JXGroupHelperCell.h 827 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // JXGroupHelperCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/5/29.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXHelperModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class JXGroupHelperCell;
  12. @protocol JXGroupHelperCellDelegate <NSObject>
  13. - (void)groupHelperCell:(JXGroupHelperCell *)cell clickAddBtnWithIndex:(NSInteger)index;
  14. @end
  15. @interface JXGroupHelperCell : UITableViewCell
  16. @property (nonatomic, strong) UIImageView *imageV;
  17. @property (nonatomic, strong) UILabel *title;
  18. @property (nonatomic, strong) UILabel *subTitle;
  19. @property (nonatomic, strong) UIButton *addBtn;
  20. @property (nonatomic, strong) NSArray *groupHelperArr;
  21. @property (weak, nonatomic) id <JXGroupHelperCellDelegate>delegate;
  22. - (void)setDataWithModel:(JXHelperModel *)model;
  23. @end
  24. NS_ASSUME_NONNULL_END