2010-06-30 61 views
0

我遷移我的應用程序的代碼庫到iPhone SDK 4。在我使用ModalViewController進入應用後臺啓動

的屏幕之一 - (IBAction爲)LoadSearch {

MySearchViewController * mySearchController = [[MySearchViewController alloc] initWithNibName:@「MySearchViewController」bundle:nil];

[self.navigationController presentModalViewController:mySearchController animated:YES];

}

啓動了ModalViewController。在Modal處於打開狀態時,如果用戶單擊主頁按鈕,應用程序將進入暫停狀態。

如果我重新啓動應用程序,啓動後立即Modal變爲不可見。似乎Modal進入navigationController視圖的背景。當我將iphone旋轉到橫向模式(模式正在適當旋轉)時,我可以看到模式。

有沒有人見過這個問題?任何建議表示讚賞。

回答

0

解決了這個問題我的自我。

我在applicationDidBecomeActive中調用了[window addSubview:tabBarController.view]。

所以,這導致在窗口中添加tabBarController.view並將任何modalViewControllers推送到背景。

相關問題