JXQuestionTableViewCell.h 696 B

12345678910111213141516171819202122232425
  1. //
  2. // JXQuestionTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by qiudezheng on 2020/4/29.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "packageRoolModel.h"
  10. @interface JXQuestionTableViewCell : UITableViewCell
  11. + (instancetype)cellWithTableView:(UITableView *)tableView;
  12. @property(strong,nonatomic)UIImageView * boxImage;
  13. @property(strong,nonatomic)UIImageView * greenGouIMG;
  14. @property(strong,nonatomic)UIImageView * redGouIMG;
  15. @property(strong,nonatomic)UIImageView * correctImage;
  16. @property(strong,nonatomic)UIImageView * wrongImage;
  17. @property(strong,nonatomic)UILabel * answerLabel;
  18. @property (nonatomic,strong) packageRoolModel *optionModel;
  19. @end