iOS 程序前后台切换总结

2021-06-10  本文已影响0人  里克尔梅西

一、应用程序的状态

各种回调状态代理:

- (BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey,id> *)launchOptions {
    NSLog(@"willFinishLaunchingWithOptions");
    return YES;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    NSLog(@"didFinishLaunchingWithOptions");
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    ViewController *vc = [mainStoryBoard instantiateViewControllerWithIdentifier:@"ViewController"];
    UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = navi;
    
    return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application {
    NSLog(@"APP将要进入非活动状态");
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
    NSLog(@"APP进入活动状态");
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
    NSLog(@"APP进入后台");
}
- (void)applicationWillEnterForeground:(UIApplication *)application {
    NSLog(@"APP从后台回到前台");
}

二、各种情况

*从设置栏滑出


image.png

参考资料:
1、https://www.jianshu.com/p/2dca46ea0c08
2、https://www.jianshu.com/p/6aa43a1be75f?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation
3、https://www.jianshu.com/p/fc675b077756

上一篇 下一篇

猜你喜欢

热点阅读