|
//
// AskIconBaseCell.h
// ThePaperBase
//
// Created by zhousan on 15/11/10.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@class AskIconBaseCell;
@protocol AskIconBaseDelegate <NSObject>
@optional
- (void)askIconBaseGotoComment:(commentObjectVO*) comment;
- (void)askIconBaseGotoUserInfo:(commentObjectVO *)comment;
- (void)askIconBaseGotoHotAsk:(commentObjectVO *)comment;
- (void)attentionBtnClick:(UIButton *)btn withcell:(AskIconBaseCell *)cell;
- (void)askIconBaseGotoHotAsk:(commentObjectVO *)comment andIndexPath:(NSIndexPath *)indexPath;
@end
@interface AskIconBaseCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)UILabel *timeLabel;
@property(nonatomic, strong)UILabel *askAuthorLabel; //提问者姓名
@property(nonatomic, strong)UILabel *anserNumsLabel; //回答数目显示
@property(nonatomic, strong)UIImageView *answerIcon;
@property(nonatomic, strong)UIImageView *iconBack;
@property(nonatomic, strong)UIImageView *verifyTag;
@property(nonatomic, strong)UIImageView *commentImg;
@property(nonatomic, strong)UIImageView *timeImg;
@property(nonatomic, strong)UIButton *UserInfoBtn;
@property(nonatomic, strong)UIButton *nameButton;
@property(nonatomic, strong)UIButton *backBtn;
@property(nonatomic, strong)UIButton *attentionBtn;
@property(nonatomic, strong)UILabel *topicNumsLabel;
@property(nonatomic, strong)UIButton *replyButton;
@property(nonatomic, weak)id<AskIconBaseDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
- (void)subLayoutSubViews;
- (void)reLayoutSubViews;
@end
|