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