Created
May 12, 2020 10:01
-
-
Save mrgulshanyadav/ea11c1c2eb9dd0c1a1e94d7c4f34ce32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @implementation AppDelegate | |
| - (BOOL)application:(UIApplication *)application | |
| didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
| [GeneratedPluginRegistrant registerWithRegistry:self]; | |
| // Override point for customization after application launch. | |
| return [super application:application didFinishLaunchingWithOptions:launchOptions]; | |
| } | |
| - (void)applicationWillResignActive:(UIApplication *)application{ | |
| self.window.hidden = YES; | |
| } | |
| - (void)applicationDidBecomeActive:(UIApplication *)application{ | |
| self.window.hidden = NO; | |
| } | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment