QuestionDescribeCell.h 1.04 KB
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 16 17
@protocol QuestionDescribeDelegate <NSObject>

- (void)showPicture:(UITapGestureRecognizer *)sender;

@end

18 19 20 21
@interface QuestionDescribeCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel; // 标题
@property (nonatomic, strong) UILabel *describeLabel; // 描述
@property (nonatomic, strong) UILabel *pictureLabel; // 照片
admin's avatar
admin committed
22 23 24

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

25 26 27 28 29 30
@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; // 时间

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

33 34
@property (nonatomic, assign) id <QuestionDescribeDelegate> delegate;

35
@end