GroupListCell.h 786 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GroupListCell.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/6.
  6. //
  7. #ifndef GroupListCell_h
  8. #define GroupListCell_h
  9. #endif /* GroupListCell_h */
  10. #import <UIKit/UIKit.h>
  11. @protocol GroupListCellDelegate <NSObject>
  12. @optional
  13. - (void)GroupListCellAct:(NSString *_Nullable)actId act:(NSInteger)state;
  14. @end
  15. @interface GroupListCell : UITableViewCell
  16. @property (nonatomic,weak) id <GroupListCellDelegate> delegate;
  17. @property(nonatomic, strong) UIImageView * _Nullable avatar;
  18. @property(nonatomic, strong) UILabel * _Nullable name;
  19. @property(nonatomic, strong) UIButton * _Nullable tongyi;
  20. @property(nonatomic, strong) UIButton * _Nullable jujue;
  21. - (void)fillWithData:( NSDictionary*_Nullable)data cellType:(NSInteger)type;
  22. @property(nonatomic, strong) NSString * _Nullable actId;
  23. @end