29 lines
667 B
Objective-C
29 lines
667 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// keyBoard
|
|
//
|
|
// Created by 张伟 on 2025/10/27.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "ViewController.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
// Override point for customization after application launch.
|
|
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;
|
|
return YES;
|
|
}
|
|
|
|
@end
|