RASettingViewController.m 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // RASettingViewController.m
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/11.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RASettingViewController.h"
  9. @interface RASettingViewController ()
  10. @end
  11. @implementation RASettingViewController
  12. + (instancetype)viewControllerFromStoryboard {
  13. RASettingViewController *settingVC = [[UIStoryboard storyboardWithName:@"setting" bundle:nil] instantiateViewControllerWithIdentifier:[self storyboardID]];
  14. return settingVC;
  15. }
  16. - (void)viewDidLoad {
  17. [super viewDidLoad];
  18. // Do any additional setup after loading the view.
  19. }
  20. - (void)didReceiveMemoryWarning {
  21. [super didReceiveMemoryWarning];
  22. // Dispose of any resources that can be recreated.
  23. }
  24. /*
  25. #pragma mark - Navigation
  26. // In a storyboard-based application, you will often want to do a little preparation before navigation
  27. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  28. // Get the new view controller using [segue destinationViewController].
  29. // Pass the selected object to the new view controller.
  30. }
  31. */
  32. @end