// // QuestionListTableCell.h // redstar // // Created by admin on 15/11/2. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "ZanButton.h" #import "QuestionModel.h" @interface QuestionListTableCell : UITableViewCell @property (nonatomic, strong) UILabel *titleLabel; // 标题 @property (nonatomic, strong) UILabel *hotLabel; // hot @property (nonatomic, strong) UILabel *detailsLabel; // 副标题 @property (nonatomic, strong) UILabel *stateLabel; // 分类 @property (nonatomic, strong) UILabel *dateLabel; // 时间 @property (nonatomic, strong) ZanButton *thumbBtn; // 点赞 @property (nonatomic, strong) QuestionModel *question; // 点赞 @end