|
//
// AnswerQuoBaseCell.h
// ThePaperBase
//
// Created by zhousan on 15/11/6.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
@protocol AnswerQuoDelegate <NSObject>
@optional
- (void)tapPicWithIndex:(NSUInteger)tag andImageBOArray:(NSArray *)imageArray;
@end
@interface AnswerQuoBaseCell : UITableViewCell {
void(^quoBlock)(BOOL isExpand,CGFloat shallHeight);
}
- (void)quoBlock:(void(^)(BOOL isQuoExpand,CGFloat quoHeight))block;
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)UIImageView *triangleImg;
@property(nonatomic, strong)UIButton *commentBack;
@property(nonatomic, strong)UILabel *quoNameLable; //楼层用户名
@property(nonatomic, strong)UILabel *quoContentLabel; //楼层内容
@property(nonatomic, assign)CGFloat quoContentHeight;
@property(nonatomic, strong)UIView *lineView;
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, assign)BOOL havePic;
@property(nonatomic, strong)UILabel *diandiandianLabel;
@property(nonatomic, weak) id<AnswerQuoDelegate> delegate;
@property(nonatomic, assign)BOOL isMe;//我的提问和回复我的盖楼显示我:
- (void)subLayoutSubViews;
- (void)reLayoutSubViews;
@end
|