123456789101112131415161718192021 |
- //
- // MyApprovalFileCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/27.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- #import "FlowAttachmentsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyApprovalFileCell : TDTableViewCell
- @property (nonatomic, copy) void(^ClickCellBlock)(NSString * url);
- @property (nonatomic, copy) void(^ClickCellModelBlock)(FlowAttachmentsModel * model);
- - (void)loadFile:(NSString *)keyValue forWithImageArray:(NSArray<FlowAttachmentsModel *> *)array;
- @end
- NS_ASSUME_NONNULL_END
|