BaseViewController.m 707 B

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