YOUPAIMessageTemplateEdit.h 984 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAIMessageTemplateEdit.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/11.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIMessageEditHeaderView.h"
  10. #import "YOUPAILZTextView.h"
  11. #import "YOUPAILZSoundRecordView.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface YOUPAIMessageTemplateEdit : ZCBaseVC
  14. @property(strong,nonatomic) UIScrollView * youpaipScrollView;
  15. @property(strong,nonatomic) YOUPAILZTextView * youpaiptextView;
  16. @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipimageHeader;
  17. @property(strong,nonatomic) UIImageView * youpaipimageView;
  18. @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipvideoHeader;
  19. @property(strong,nonatomic) UIImageView * youpaipvideoView;
  20. @property(strong, nonatomic) UIImageView *youpaipplayerImageView;
  21. @property(strong,nonatomic) YOUPAIMessageEditHeaderView * youpaipvoiceHeader;
  22. @property(strong,nonatomic) YOUPAILZSoundRecordView * soundRecordView;
  23. @end
  24. NS_ASSUME_NONNULL_END