0
- (void)applicationWillResignActive:(UIApplication *)application
    {
        NSLog(@"resign active");
    }

    - (void)applicationDidEnterBackground:(UIApplication *)application
    {
        NSLog(@"background");  
    }

    - (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.
    }

    - (void)applicationDidBecomeActive:(UIApplication *)application
    {
        NSLog(@"Active");
    }

    - (void)applicationWillTerminate:(UIApplication *)application
    {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }

4 本の指で左にスワイプすると (アプリケーションを完全に変更しないでください)、ログが表示 resign activeされ、4 本の指を右に移動できますActive

4 本の指で上にスワイプすると、 が表示されますresign active。その後、4 本の指で右にスワイプすると (実行中のすべてのアプリが表示されている下のバーを実際に閉じずに)、表示されませんactive

これはバグですか?

4

1 に答える 1