// #import @protocol TopicComCellDelegate; @interface TopicComCell : UITableViewCell @property(assign)id delegate; @property(nonatomic,weak)NSDictionary* model; /**表明是可以对回复进行评论 还是话题拥有者采纳回复 */ @property(nonatomic, assign) BOOL isAdopt; +(TopicComCell*)cellForTableView:(UITableView*)tableView; @end @protocol TopicComCellDelegate @optional -(void)gotoCommentsByName:(NSString *)name; @end CGFloat TopicComCellHeight(NSDictionary* dict );