|
//
// hotAnswerCell.h
// ThePaperHD
//
// Created by scar1900 on 15/2/2.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol hotAnswerCellDelegate <NSObject>
@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<hotAnswerCellDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
@end
|