FriendListCell.h 402 B

1234567891011121314151617181920212223
  1. //
  2. // FriendListCell.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/6.
  6. //
  7. #ifndef FriendListCell_h
  8. #define FriendListCell_h
  9. #endif /* FriendListCell_h */
  10. #import <UIKit/UIKit.h>
  11. #import <Foundation/Foundation.h>
  12. @interface FriendListCell : UITableViewCell
  13. @property(nonatomic, strong) UIImageView *avatar;
  14. @property(nonatomic, strong) UILabel *name;
  15. - (void)fillWithData:( NSDictionary*)data;
  16. @end