Files
keyboard/keyBoard/AppDelegate.m

29 lines
667 B
Mathematica
Raw Normal View History

2025-10-27 18:47:18 +08:00
//
// AppDelegate.m
// keyBoard
//
// Created by on 2025/10/27.
//
#import "AppDelegate.h"
2025-10-27 19:42:27 +08:00
#import "ViewController.h"
2025-10-27 18:47:18 +08:00
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
2025-10-27 19:42:27 +08:00
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
ViewController *vc = [[ViewController alloc] init];
self.window.rootViewController = vc;
2025-10-27 18:47:18 +08:00
return YES;
}
@end