QuestionDescribeCell.h 888 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  QuestionDescribeCell.h
//  redstar
//
//  Created by admin on 15/11/3.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
10
#import "QuestionDetailModel.h"
11 12 13 14 15

@interface QuestionDescribeCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel; // 标题
@property (nonatomic, strong) UILabel *describeLabel; // 描述
@property (nonatomic, strong) UILabel *pictureLabel; // 照片
admin's avatar
admin committed
16 17 18

@property (nonatomic, strong) UIView *pictureView; // 照片

19 20 21 22 23 24
@property (nonatomic, strong) UILabel *feedbackLabel; // 反馈
@property (nonatomic, strong) UIView *feedbackBackView; // 反馈背景
@property (nonatomic, strong) UILabel *answerLabel; // 答案
@property (nonatomic, strong) UILabel *peopleLabel; // 解决人
@property (nonatomic, strong) UILabel *dateLabel; // 时间

25
@property (nonatomic, strong) QuestionDetailModel *questionDetail;
admin's avatar
admin committed
26

27
@end