1234567891011121314151617181920212223242526272829303132 |
- //
- // MyWordCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/23.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FlowAttachmentsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- /// 审批人 抄送人子 cell
- @interface MyWordCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *iconImage;
- @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
- @property (weak, nonatomic) IBOutlet UILabel *nameLbl;
- @property (nonatomic, strong)NSIndexPath *indexPath;
- - (void)looadDataHiden:(Boolean)hiden;
- - (void)loadImageUrl:(NSString *)img;
- - (void)loadImageUrl:(NSString *)img withName:(NSString *)name;
- - (void)loadImageImageModel:(SelectImageModel *)selectModel;
- - (void)loadImageImageFlowModel:(FlowAttachmentsModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|