RAOptionViewController.h 493 B

1234567891011121314151617181920
  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. @property (nonatomic,copy) void(^selectBlk)(NSInteger index);
  14. @end