29 lines
544 B
Objective-C
29 lines
544 B
Objective-C
//
|
|
// XPFindNewFriendTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/3.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class UserInfoModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPFindNewFriendTableViewCellDelegate <NSObject>
|
|
|
|
/// 点击头像
|
|
- (void)xPFindNewFriendTableViewCellClickAvatar:(UserInfoModel *)infoModel;
|
|
|
|
@end
|
|
|
|
@interface XPFindNewFriendTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) UserInfoModel *roomInfo;
|
|
|
|
@property (nonatomic, weak) id<XPFindNewFriendTableViewCellDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|