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