// // JXQuestionTableViewCell.h // shiku_im // // Created by qiudezheng on 2020/4/29. // Copyright © 2020 Reese. All rights reserved. // #import #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