12345678910111213141516171819202122232425 |
- //
- // JXQuestionTableViewCell.h
- // shiku_im
- //
- // Created by qiudezheng on 2020/4/29.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "packageRoolModel.h"
-
- @interface JXQuestionTableViewCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property(strong,nonatomic)UIImageView * boxImage;
- @property(strong,nonatomic)UIImageView * greenGouIMG;
- @property(strong,nonatomic)UIImageView * redGouIMG;
- @property(strong,nonatomic)UIImageView * correctImage;
- @property(strong,nonatomic)UIImageView * wrongImage;
- @property(strong,nonatomic)UILabel * answerLabel;
- @property (nonatomic,strong) packageRoolModel *optionModel;
- @end
-
|