// // GroupListCell.h // AIIM // // Created by gan on 2025/4/6. // #ifndef GroupListCell_h #define GroupListCell_h #endif /* GroupListCell_h */ #import @protocol GroupListCellDelegate @optional - (void)GroupListCellAct:(NSString *_Nullable)actId act:(NSInteger)state; @end @interface GroupListCell : UITableViewCell @property (nonatomic,weak) id delegate; @property(nonatomic, strong) UIImageView * _Nullable avatar; @property(nonatomic, strong) UILabel * _Nullable name; @property(nonatomic, strong) UIButton * _Nullable tongyi; @property(nonatomic, strong) UIButton * _Nullable jujue; - (void)fillWithData:( NSDictionary*_Nullable)data cellType:(NSInteger)type; @property(nonatomic, strong) NSString * _Nullable actId; @end