91 lines
2.8 KiB
Objective-C
91 lines
2.8 KiB
Objective-C
//
|
|
// AppDelegate.m
|
|
// keyBoard
|
|
//
|
|
// Created by 张伟 on 2025/10/27.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "ViewController.h"
|
|
#import "KBPermissionViewController.h"
|
|
|
|
static NSString * const kKBKeyboardExtensionBundleId = @"com.keyBoard.CustomKeyboard";
|
|
static BOOL KBIsKeyboardEnabled(void) {
|
|
for (UITextInputMode *mode in [UITextInputMode activeInputModes]) {
|
|
NSString *identifier = nil;
|
|
@try {
|
|
identifier = [mode valueForKey:@"identifier"]; // not a public API
|
|
} @catch (__unused NSException *e) {
|
|
identifier = nil;
|
|
}
|
|
if ([identifier isKindOfClass:[NSString class]] &&
|
|
[identifier rangeOfString:kKBKeyboardExtensionBundleId].location != NSNotFound) {
|
|
return YES;
|
|
}
|
|
}
|
|
return NO;
|
|
}
|
|
|
|
|
|
@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;
|
|
|
|
// [[NSNotificationCenter defaultCenter] addObserver:self
|
|
// selector:@selector(applicationDidBecomeActiveNotification:)
|
|
// name:UIApplicationDidBecomeActiveNotification
|
|
// object:nil];
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self kb_presentPermissionIfNeeded];
|
|
});
|
|
return YES;
|
|
}
|
|
//
|
|
//#pragma mark - Active notifications
|
|
//
|
|
//- (void)applicationDidBecomeActiveNotification:(NSNotification *)note
|
|
//{
|
|
// [self kb_presentPermissionIfNeeded];
|
|
//}
|
|
|
|
#pragma mark - Permission presentation
|
|
|
|
- (UIViewController *)kb_topMostViewController
|
|
{
|
|
UIViewController *root = self.window.rootViewController;
|
|
if (!root) return nil;
|
|
UIViewController *top = root;
|
|
while (top.presentedViewController) {
|
|
top = top.presentedViewController;
|
|
}
|
|
return top;
|
|
}
|
|
|
|
- (void)kb_presentPermissionIfNeeded
|
|
{
|
|
BOOL enabled = KBIsKeyboardEnabled();
|
|
UIViewController *top = [self kb_topMostViewController];
|
|
if (!top) return;
|
|
if ([top isKindOfClass:[KBPermissionViewController class]]) {
|
|
if (enabled) {
|
|
[top dismissViewControllerAnimated:YES completion:nil];
|
|
}
|
|
return;
|
|
}
|
|
if (!enabled) {
|
|
KBPermissionViewController *guide = [KBPermissionViewController new];
|
|
guide.modalPresentationStyle = UIModalPresentationFullScreen;
|
|
[top presentViewController:guide animated:YES completion:nil];
|
|
}
|
|
}
|
|
|
|
@end
|