123456789101112131415161718192021222324252627282930313233 |
- //
- // MHTopicCommentCell.h
- // MHDevelopExample
- //
- // Created by CoderMikeHe on 17/2/9.
- // Copyright © 2017年 CoderMikeHe. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class MHCommentFrame,MHTopicCommentCell;
- @protocol MHTopicCommentCellDelegate <NSObject>
- @optional
- /** 点击评论cell的昵称 */
- - (void) topicCommentCell:(MHTopicCommentCell *)topicCommentCell didClickedUser:(NSString *)userId;
- @end
- @interface MHTopicCommentCell : UITableViewCell
- /** 文本内容 */
- @property (nonatomic , weak) YYLabel *contentLabel;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- /** 评论Frame */
- @property (nonatomic , strong) MHCommentFrame *commentFrame;
- /** 代理 */
- @property (nonatomic , weak) id <MHTopicCommentCellDelegate> delegate;
- @end
|