|
//
// topicAnswerCell.h
// ThePaperHD
//
// Created by scar1900 on 15/5/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topicAnswerDelegate <NSObject>
- (void)hasPraisedAnswer:(NSIndexPath*)indexPath withCommentBO:(commentObjectVO*)commentBO;
- (void)commentBackForUser:(NSIndexPath*)indexPath withCommentBO:(commentObjectVO*)commentBO askBO:(commentObjectVO*)askBO;
-(void) topicToOther:(commentObjectVO*) comment;
@end
@interface topicAnswerCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, strong)commentObjectVO *askCommentBO;
@property(nonatomic, assign)CGFloat padding;
@property(nonatomic, strong)NSIndexPath *indexPath;
@property(nonatomic, weak)id<topicAnswerDelegate> delegate;
@end
|