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