YOUPAIMessafeTemplateListCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // YOUPAIMessafeTemplateListCell.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. NS_ASSUME_NONNULL_BEGIN
  10. @interface YOUPAIMessafeTemplateListCell : UITableViewCell
  11. @property(strong, nonatomic) UILabel *youpaiptitleLab;
  12. @property(strong, nonatomic) UIButton *youpaipeditBtn;
  13. @property(strong, nonatomic) UIButton *youpaipdeleteBtn;
  14. @property(strong, nonatomic) UIButton *youpaipselectBtn;
  15. @property(strong, nonatomic) UIView *youpaiplineView;
  16. @property(strong, nonatomic) UILabel *youpaiptextLab;
  17. @property(strong, nonatomic) UIImageView *youpaipimgView;
  18. @property(strong, nonatomic) UIImageView *youpaipvideoView;
  19. @property(strong, nonatomic) UIImageView *youpaipvideoPlayerView;
  20. @property(strong, nonatomic) UIImageView *youpaipvoiceView;
  21. @property(strong, nonatomic) UIImageView *youpaipstateImageView;
  22. @property(strong, nonatomic) UILabel *youpaipvoideCutDownLab;
  23. @property(strong, nonatomic) UIStackView *headerStackView; // 头部
  24. @property(strong, nonatomic) UIStackView *contentStackView; // 内容
  25. @end
  26. NS_ASSUME_NONNULL_END