MyWordCell.h 820 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MyWordCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/23.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FlowAttachmentsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. /// 审批人 抄送人子 cell
  12. @interface MyWordCell : UICollectionViewCell
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconImage;
  14. @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
  15. @property (weak, nonatomic) IBOutlet UILabel *nameLbl;
  16. @property (nonatomic, strong)NSIndexPath *indexPath;
  17. - (void)looadDataHiden:(Boolean)hiden;
  18. - (void)loadImageUrl:(NSString *)img;
  19. - (void)loadImageUrl:(NSString *)img withName:(NSString *)name;
  20. - (void)loadImageImageModel:(SelectImageModel *)selectModel;
  21. - (void)loadImageImageFlowModel:(FlowAttachmentsModel *)model;
  22. @end
  23. NS_ASSUME_NONNULL_END