2011-07-30 105 views
1

在iOS 4.3中爲iPad呈現模態視圖控制器已更改?在iOS 4.3中爲iPad呈現模態視圖控制器?

我創建了一個新的視圖應用程序,然後創建了一個名爲「One」的新UIViewControllerSubclass,然後將One.xib的背景更改爲黑色,位於下面的代碼中的應用程序視圖控制器的viewDidLoad方法中。我跑在模擬器項目,並收到了日誌「代碼運行...」

該項目可從這裏下載.... Download Source Code of Project

#import "One.h" 

- (void)viewDidLoad 
{ 
One *newItemViewController = [[One alloc] initWithNibName:@"One" bundle:nil]; 
newItemViewController.modalPresentationStyle = UIModalPresentationFormSheet; 
[self presentModalViewController:newItemViewController animated:YES]; 
[newItemViewController release]; 
NSLog(@"Code has run..."); 
} 

回答

1

嘗試把你這個在viewDidAppear方法代替viewDidLoad。

相關問題