Files
keyboard/keyBoard/Class/Base/VC/BaseViewController.m
2025-11-07 20:58:14 +08:00

33 lines
699 B
Objective-C

//
// BaseViewController.m
// keyBoard
//
// Created by Mac on 2025/11/7.
//
#import "BaseViewController.h"
@interface BaseViewController ()
@end
@implementation BaseViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor whiteColor];
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end