123456789101112131415161718192021222324252627282930 |
- //
- // 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 <SelectImageModel *> *approvalSection;
- @property (nonatomic,weak) id<AddPictureCellDelegate>delegate;
- @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
|