Files
2026-07-13 12:35:01 +08:00

34 lines
755 B
Objective-C

//
// TLAppDelegate.m
// TLChat
//
// Created by 李伯坤 on 16/1/23.
// Copyright © 2016年 李伯坤. All rights reserved.
//
#import "TLAppDelegate.h"
#import "TLLaunchManager.h"
#import "TLSDKManager.h"
@implementation TLAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
// 初始化第三方SDK
[[TLSDKManager sharedInstance] launchInWindow:self.window];
// 初始化UI
[[TLLaunchManager sharedInstance] launchInWindow:self.window];
// 紧急方法,可使用JSPatch重写
[self urgentMethod];
return YES;
}
- (void)urgentMethod{}
@end