| 1234567891011121314151617181920212223242526272829 |
- //
- // GroupListCell.h
- // AIIM
- //
- // Created by gan on 2025/4/6.
- //
- #ifndef GroupListCell_h
- #define GroupListCell_h
- #endif /* GroupListCell_h */
- #import <UIKit/UIKit.h>
- @protocol GroupListCellDelegate <NSObject>
- @optional
- - (void)GroupListCellAct:(NSString *_Nullable)actId act:(NSInteger)state;
- @end
- @interface GroupListCell : UITableViewCell
- @property (nonatomic,weak) id <GroupListCellDelegate> 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
|