JXQuestionCell.h 474 B

1234567891011121314151617181920
  1. //
  2. // JXQuestionCell.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/10.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "packageRoolModel.h"
  10. @interface JXQuestionCell : UITableViewCell
  11. + (instancetype)cellWithTableView:(UITableView *)tableView;
  12. @property (nonatomic,strong) OptionsJX *optionModel;
  13. -(void)createUI:(OptionsJX *)optionModel andDui:(NSInteger)index andSelect:(NSInteger)indexPath andCell:(NSInteger)indexRow;
  14. @end