apple login

This commit is contained in:
2025-10-30 14:29:11 +08:00
parent f58bf61500
commit 85a3694e35
7 changed files with 388 additions and 6 deletions

View File

@@ -6,11 +6,11 @@
//
#import "AppDelegate.h"
#import "ViewController.h"
#import "KBPermissionViewController.h"
#import <AFNetworking/AFNetworking.h>
#import <Bugly/Bugly.h>
#import "BaseTabBarController.h"
#import "LoginViewController.h"
static NSString * const kKBKeyboardExtensionBundleId = @"com.keyBoard.CustomKeyboard";
@@ -41,7 +41,7 @@ static NSString * const kKBKeyboardExtensionBundleId = @"com.keyBoard.CustomKeyb
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
BaseTabBarController *vc = [[BaseTabBarController alloc] init];
LoginViewController *vc = [[LoginViewController alloc] init];
self.window.rootViewController = vc;
}