TopicComCell.h 549 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. #import <UIKit/UIKit.h>
  3. @protocol TopicComCellDelegate;
  4. @interface TopicComCell : UITableViewCell
  5. @property(assign)id<TopicComCellDelegate> delegate;
  6. @property(nonatomic,weak)NSDictionary* model;
  7. /**表明是可以对回复进行评论 还是话题拥有者采纳回复
  8. */
  9. @property(nonatomic, assign) BOOL isAdopt;
  10. +(TopicComCell*)cellForTableView:(UITableView*)tableView;
  11. @end
  12. @protocol TopicComCellDelegate <NSObject>
  13. @optional
  14. -(void)gotoCommentsByName:(NSString *)name;
  15. @end
  16. CGFloat TopicComCellHeight(NSDictionary* dict );