123456789101112131415161718192021222324252627 |
- //
- // YOUPAIMessageTemplateEdit.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/11.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIMessageEditHeaderView.h"
- #import "YOUPAILZTextView.h"
- #import "YOUPAILZSoundRecordView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIMessageTemplateEdit : ZCBaseVC
- @property(strong,nonatomic) UIScrollView * youpaipScrollView;
- @property(strong,nonatomic) YOUPAILZTextView * youpaiptextView;
- @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipimageHeader;
- @property(strong,nonatomic) UIImageView * youpaipimageView;
- @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipvideoHeader;
- @property(strong,nonatomic) UIImageView * youpaipvideoView;
- @property(strong, nonatomic) UIImageView *youpaipplayerImageView;
- @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipvoiceHeader;
- @property(strong,nonatomic) YOUPAILZSoundRecordView * soundRecordView;
- @end
- NS_ASSUME_NONNULL_END
|