2022-06-22 20:38:57 +08:00
|
|
|
//
|
|
|
|
// XPMonentsReplyTableViewCell.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2022/6/22.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2022-08-26 17:13:20 +08:00
|
|
|
@class MonentsReplyModel, XPMonentsReplyTableViewCell;
|
|
|
|
@protocol XPMonentsReplyTableViewCellDelegate <NSObject>
|
|
|
|
|
|
|
|
///点击了头像
|
|
|
|
- (void)xPMonentsReplyTableViewCell:(XPMonentsReplyTableViewCell *)view didClickAvatar:(MonentsReplyModel *)replyInfo;
|
|
|
|
|
|
|
|
@end
|
2022-06-22 20:38:57 +08:00
|
|
|
@interface XPMonentsReplyTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic,strong) MonentsReplyModel *replyInfo;
|
2022-08-26 17:13:20 +08:00
|
|
|
///代理
|
|
|
|
@property (nonatomic,weak) id<XPMonentsReplyTableViewCellDelegate> delegate;
|
2022-06-22 20:38:57 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|