// // hotAnswerCell.h // ThePaperHD // // Created by scar1900 on 15/2/2. // Copyright (c) 2015年 scar1900. All rights reserved. // #import @protocol hotAnswerCellDelegate @optional - (void)titleClick:(commentObjectVO*)contBO; - (void)popDetailAnswerPage:(commentObjectVO*)comment backColor:(UIColor*)color; - (void)hasPraisedComment:(NSIndexPath*)indexPath withCommentBO:(commentObjectVO*)commentBO; @end @interface hotAnswerCell : UICollectionViewCell @property(nonatomic, strong)commentObjectVO *commentBO; @property(nonatomic, weak)id delegate; @property(nonatomic, strong)NSIndexPath *indexPath; @end