// // InputGongwenFileCell.h // smartRhino // // Created by Android on 2020/1/14. // Copyright © 2020 tederen. All rights reserved. // #import "TDTableViewCell.h" #import "AddPictureCell.h" #import "UIPlaceHolderTextView.h" NS_ASSUME_NONNULL_BEGIN /// 公文输入带文件 @interface InputGongwenFileCell : TDTableViewCell @property (weak, nonatomic) IBOutlet UIPlaceHolderTextView *gongwenContent; @property (weak, nonatomic) IBOutlet UICollectionView *mycollectionView; @property (nonatomic, strong) NSMutableArray *approvalSection; @property (nonatomic,weak) iddelegate; @property (nonatomic, strong) NSIndexPath *index; @property (strong, nonatomic, nullable) NSString *placeholderImg; @property (weak, nonatomic) IBOutlet UIImageView *redImageV; @property (nonatomic, copy) void(^ClickCellBlock)(NSInteger index); @end NS_ASSUME_NONNULL_END