26 lines
583 B
Objective-C
26 lines
583 B
Objective-C
//
|
|
// YMMineFansTableViewCell.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class FansInfoModel, XPMineFansTableViewCell;
|
|
@protocol XPMineFansTableViewCellDelegate <NSObject>
|
|
///关注
|
|
- (void)xPMineFansTableViewCell:(XPMineFansTableViewCell *)view didClickAttention:(NSString *)uid;
|
|
|
|
@end
|
|
@interface XPMineFansTableViewCell : UITableViewCell
|
|
///粉丝信息
|
|
@property (nonatomic,strong) FansInfoModel *fansInfo;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPMineFansTableViewCellDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|