|
//
// askContentCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
@protocol askContentCellDelgate <NSObject>
@optional
-(void) gotoUserInfo:(commentObjectVO *)comment;
@end
@interface askContentCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, assign)CGFloat askNameHeight;
@property(nonatomic, assign)CGFloat askContentHeight;
@property(nonatomic, strong)AsyncImageView *headPicImgView;
@property(nonatomic, strong)UIImageView *vipImg;//认证用户提问或回答,头像不显示加”V“(bug:4116)
@property(nonatomic, strong)UILabel *askNameLabel;
@property(nonatomic, strong)UIButton *askNameButton;
@property(nonatomic, strong)UILabel *answerNumLabel;
@property(nonatomic, strong)UILabel *askContentLabel;
@property(nonatomic, strong)UIImageView *dashedLineView;
@property(nonatomic, weak)id<askContentCellDelgate> askContentDelegate;
@property(nonatomic, assign)BOOL isGrayBack;
@property(nonatomic, strong)UIButton *pushInfo;
@end
|