2011-11-12 6 views

答えて

1

のInfo.plistアプリキーで入力した「アプリケーションをバックグラウンドで実行されません」とそれを置くあなたのアプリデリゲートでYES

+0

ありがとう、アプリケーションの行を追加していません....そしてうまくいきます。 – Mona

2

いいだろう。

- (void)applicationWillEnterForeground:(UIApplication *)application 
{ 
    /* 
    Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 
    */ 
} 
+0

デリゲートの最初のページを呼び出す方法がわかりません。私の最初のページは、タブバーの最初のページです。 – Mona

0

を重視、IVARにあなたのタブバーを接続し、次の操作を行います。

- (void)applicationWillEnterForeground:(UIApplication *)application 
{ 
    self.mayTabBar.selectedIndex=0; 
} 

これは、タブバーの最初の(一番左の)項目に切り替わります。

関連する問題