| 1234567891011121314151617181920 |
- //
- // RAOptionViewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RABaseViewController.h"
- @class RASettingOption;
- @interface RAOptionViewController : RABaseViewController
- + (instancetype)optionViewControllerWith:(NSArray<RASettingOption *> *)options selectedIndex:(NSInteger)index;
- @property (nonatomic,copy) NSString *optionTitle;
- @property (nonatomic,copy) void(^selectBlk)(NSInteger index);
- @end
|