// // EXFriendListCell.h // AIIM // // Created by gan on 2025/4/6. // #ifndef EXFriendListCell_h #define EXFriendListCell_h #endif /* EXFriendListCell_h */ #import #import @protocol EXFriendListCellDelegate - (void)actionNote:(NSString *_Nullable)note; @end @interface EXFriendListCell : UITableViewCell @property (nonatomic,weak) id delegate; @property(nonatomic, strong) UIImageView * _Nullable avatar; @property(nonatomic, strong) UILabel * _Nullable name; - (void)fillWithData:( NSDictionary*_Nullable)data; @end