|
//
// hotAskContentCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/28.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "askContentCell.h"
@protocol hotAskContentCellDelegate <NSObject>
@optional
- (void)menuClickAnswer:(commentObjectVO*)commentBO closeHidden:(BOOL) isHidden;
- (void)deleteAskSuccess;
- (void)focusAsk:(commentObjectVO*)comment isToFocus:(BOOL)isToFocus button:(UIButton*)btn;
@end
@interface hotAskContentCell : askContentCell
@property(nonatomic, assign)BOOL isHaveMenu;
@property(nonatomic, weak)id<hotAskContentCellDelegate> hotAskDelegate;
@property(nonatomic, strong)UIButton *menuButton;
@end
|