| 1234567891011121314151617181920212223 |
- //
- // FriendListCell.h
- // AIIM
- //
- // Created by gan on 2025/4/6.
- //
- #ifndef FriendListCell_h
- #define FriendListCell_h
- #endif /* FriendListCell_h */
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- @interface FriendListCell : UITableViewCell
- @property(nonatomic, strong) UIImageView *avatar;
- @property(nonatomic, strong) UILabel *name;
- - (void)fillWithData:( NSDictionary*)data;
- @end
|