ImageAttachmentCell.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // ImageAttachmentCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/7/27.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomerInfoDetailModel.h"
  10. #import"DKTextAlignmentFillLabel.h"
  11. @interface ImageAttachmentCell : UITableViewCell<UICollectionViewDelegate, UICollectionViewDataSource>
  12. /**
  13. 是否展开
  14. */
  15. @property (nonatomic, copy, setter = setIsOpen:) NSString *isOpen;
  16. /**
  17. 代理
  18. */
  19. @property (nonatomic,weak) id delegate;
  20. /**
  21. 代理事件
  22. */
  23. @property SEL refreshTableView;
  24. /**
  25. 收缩展开
  26. */
  27. @property (nonatomic,strong) UIButton *btnArrow;
  28. /**
  29. 未显示控件的父控件
  30. */
  31. @property (nonatomic,strong) UIView *subView;
  32. /**
  33. <#Description#>
  34. */
  35. @property (strong,nonatomic) NSMutableArray *imageArr;
  36. /**
  37. <#Description#>
  38. */
  39. @property (strong,nonatomic) UILabel *imgInfoTitle;
  40. /**
  41. <#Description#>
  42. */
  43. @property (strong,nonatomic)CustomerInfoDetailModel *infoDetailModel;
  44. /**
  45. 设置图片
  46. @param infoDetail <#infoDetail description#>
  47. */
  48. - (void)setImageInfo:(CustomerInfoDetailModel *)infoDetail ;
  49. @end