|
//
// AskContentBaseCell.h
// ThePaperBase
//
// Created by zhousan on 15/11/9.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TPEmojiLabel.h"
@protocol AskContentBaseDelegate <NSObject>
@optional
- (void)gotoHotAskWithCommentVO:(commentObjectVO *)comment;
- (void)gotoHotAskWithCommentVO:(commentObjectVO *)comment andIndexPath:(NSIndexPath *)indexPath;
- (void)replyBtnClick:(commentObjectVO *)comment;
- (void)deleteAnswerSuccess;
@end
@interface AskContentBaseCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, assign)CGFloat cellHeight;
@property(nonatomic, strong)TPEmojiLabel *askContentLabel; //问题内容
@property(nonatomic, strong)UIButton *menuButton;
@property(nonatomic, strong)UIButton *backBtn;
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)UIImageView *lineView;
@property(nonatomic, weak)id<AskContentBaseDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
- (void)subLayoutSubViews;
- (void)reLayoutSubViews;
@end
|