|
//
// hitAnwerCell.h
// ThePaperDemo
//
// Created by scar1900 on 14-9-24.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol hitAnswerDelegate <NSObject>
- (void)goToAskDetailPage:(commentObjectVO*)commentBO;
@end
@interface hitAnwerCell : UITableViewCell {
void(^expandCell)(BOOL isExpand,CGFloat shallHeight);
}
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, weak)id<hitAnswerDelegate> delegate;
- (void)expandCell:(void(^)(BOOL,CGFloat))block;
@end
|