EXFriendListCell.h 610 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // EXFriendListCell.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/6.
  6. //
  7. #ifndef EXFriendListCell_h
  8. #define EXFriendListCell_h
  9. #endif /* EXFriendListCell_h */
  10. #import <UIKit/UIKit.h>
  11. #import <Foundation/Foundation.h>
  12. @protocol EXFriendListCellDelegate <NSObject>
  13. - (void)actionNote:(NSString *_Nullable)note;
  14. @end
  15. @interface EXFriendListCell : UITableViewCell
  16. @property (nonatomic,weak) id <EXFriendListCellDelegate> delegate;
  17. @property(nonatomic, strong) UIImageView * _Nullable avatar;
  18. @property(nonatomic, strong) UILabel * _Nullable name;
  19. - (void)fillWithData:( NSDictionary*_Nullable)data;
  20. @end