1

この i OS スプライト キット チュートリアルを試して、同様のアプリを作成しました。ただし、ホームボタンを押して iOS のホーム画面に移動すると、xCode で不正なアクセス例外が発生することに気付きました。アプリに戻ると、最初から始まります。

その例外を回避するためにスプライト キット アプリを適切に閉じる/最小化するにはどうすればよいですか?

シーンを表示するView Controller内でこれを試しましたが、呼び出されません:

-(void)viewWillDisappear:(BOOL)animated
{
    SKView * skView = (SKView *)self.view;
    skView.paused = YES;
    [super viewWillDisappear:animated];
}
4

2 に答える 2

0

Sprite Kit の上に構築された Kobold Kit スプライト エンジンがあることがわかりました。プロジェクトをそれに移植した後、アプリを最小化して、画面上の同じもので復元できます。

于 2013-12-16T14:42:02.550 に答える
-1

アプリの最小化を処理する適切な方法は、これらのメソッドを介して AppDelegate にあると思います。

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (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
{
    // 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.
}
于 2013-11-11T17:35:05.240 に答える