InputGongwenFileCell.h 903 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // InputGongwenFileCell.h
  3. // smartRhino
  4. //
  5. // Created by Android on 2020/1/14.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. #import "AddPictureCell.h"
  10. #import "UIPlaceHolderTextView.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. /// 公文输入带文件
  13. @interface InputGongwenFileCell : TDTableViewCell
  14. @property (weak, nonatomic) IBOutlet UIPlaceHolderTextView *gongwenContent;
  15. @property (weak, nonatomic) IBOutlet UICollectionView *mycollectionView;
  16. @property (nonatomic, strong) NSMutableArray <SelectImageModel *> *approvalSection;
  17. @property (nonatomic,weak) id<AddPictureCellDelegate>delegate;
  18. @property (nonatomic, strong) NSIndexPath *index;
  19. @property (strong, nonatomic, nullable) NSString *placeholderImg;
  20. @property (weak, nonatomic) IBOutlet UIImageView *redImageV;
  21. @property (nonatomic, copy) void(^ClickCellBlock)(NSInteger index);
  22. @end
  23. NS_ASSUME_NONNULL_END