RABaseViewController.m 639 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // RABaseViewController.m
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/1.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RABaseViewController.h"
  9. @interface RABaseViewController ()
  10. @end
  11. @implementation RABaseViewController
  12. + (NSString *)storyboardID {
  13. return NSStringFromClass([self class]);
  14. }
  15. + (instancetype)viewControllerFromStoryboard {
  16. return nil;
  17. }
  18. - (void)viewDidLoad {
  19. [super viewDidLoad];
  20. // Do any additional setup after loading the view.
  21. }
  22. - (void)didReceiveMemoryWarning {
  23. [super didReceiveMemoryWarning];
  24. // Dispose of any resources that can be recreated.
  25. }
  26. @end