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