Skip to content

Commit

Permalink
modify to only use the system keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzhenzhen committed Aug 25, 2023
1 parent 1bdcca7 commit dbbe8e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bither-ios/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@ - (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(UIApplicationExtensionPointIdentifier)extensionPointIdentifier {
return NO;
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
Expand Down

0 comments on commit dbbe8e1

Please sign in to comment.