RAOptionViewController.h 430 B

123456789101112131415161718
  1. //
  2. // RAOptionViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/12.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RABaseViewController.h"
  9. @class RASettingOption;
  10. @interface RAOptionViewController : RABaseViewController
  11. + (instancetype)optionViewControllerWith:(NSArray<RASettingOption *> *)options selectedIndex:(NSInteger)index;
  12. @property (nonatomic,copy) NSString *optionTitle;
  13. @end