23 lines
353 B
Objective-C
23 lines
353 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// HiBit
|
|
//
|
|
// Created by HI_LOSER on 2024/6/7.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "AppDelegate+Extesion.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
[self loadWindow];
|
|
return YES;
|
|
}
|
|
@end
|