BaseTabBarController.m 660 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BaseTabBarController.m
  3. // Private-X
  4. //
  5. // Created by 余衡武 on 2021/12/8.
  6. //
  7. #import "BaseTabBarController.h"
  8. @interface BaseTabBarController ()
  9. @end
  10. @implementation BaseTabBarController
  11. - (void)viewDidLoad {
  12. [super viewDidLoad];
  13. // Do any additional setup after loading the view.
  14. }
  15. /*
  16. #pragma mark - Navigation
  17. // In a storyboard-based application, you will often want to do a little preparation before navigation
  18. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  19. // Get the new view controller using [segue destinationViewController].
  20. // Pass the selected object to the new view controller.
  21. }
  22. */
  23. @end