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