1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #import "TDTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^TouchBlock)(void);
- @class CommentModel;
- @class CommentSubModel;
- @protocol HomeDetailCommentCellDelegate <NSObject>
- - (void)didClickZanComment:(CommentModel *)model withStatus:(BOOL)status;
- - (void)didClickZanComment:(CommentModel *)model;
- - (void)didClickRepayComment:(CommentModel *)model;
- - (void)didClickRepayCommentComment:(CommentSubModel *)model;
- - (void)didClickIconLookup:(CommentModel *)model;
- @end
- @interface HomeDetailCommentCell : TDTableViewCell
- @property (nonatomic, strong) TouchBlock touchAction;
- @property (nonatomic, strong) TouchBlock touchZan;
- @property (nonatomic, weak) id<HomeDetailCommentCellDelegate >delegate;
- - (void)loadCommentData:(CommentModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|