我已經創建了一個以模態視圖初始頁面開始的分體視圖應用程序。問題是模式視圖總是以縱向模式啓動,即使ipad處於橫向模式。如果我旋轉ipad幾次,它會適當旋轉。我在Info.plist中設置了UIInterfaceOrientation,但它沒有任何影響。在didFinishLaunchingWithOptions通過分體式視圖控制器啓動的模態視圖的問題
,我使用下面的代碼
...
[self.window addSubview:splitViewController.view];
SplashViewController *modalView = [[SplashViewController alloc] intiWithNibName:nil bundle:nil];
modalView.modalPresentationStyle = UIModalPresentationFullScreen;
[splitViewController presentModalViewController:modalView animated:YES];
...
我如何能確保模態視圖中的風景啓動有什麼建議?
同樣的問題~~~~ – ludo 2011-01-25 10:10:01