2012-02-05 46 views
0

我累了嘗試從ipad應用程序打開模式視圖控制器。 如何顯示模板視圖(如表單)?如何從UITableView打開模式視圖(表單)?

這裏是我的代碼塊。 喜歡這種風格的打開窗口(全屏),但沒有任何物體從我的模態視圖

viewDetail *hd = [[viewDetail alloc] init]; 
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:hd]; 

hd.modalPresentationStyle = UIModalPresentationFormSheet; 
[self.navigationController presentModalViewController:nav animated:YES]; 

[hd release]; 
[nav release]; 

正是我想要的方式選擇從UITableView中 值時打開港前賽績模式的看法,我正在開發Xcode 4.2.1和我的故事板功能 感謝您的幫助。

一樣,讓一個SIGABRT錯誤

viewDetail *hd = [[viewDetail alloc] initWithNibName:@"viewDetail" bundle:nil]; 
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:hd]; 

hd.modalPresentationStyle = UIModalPresentationFormSheet; 
[self.navigationController presentModalViewController:nav animated:YES]; 

[hd release]; 
[nav release]; 

回答

1

我固定我的解決方案,工作了廈門國際銀行文件出來的故事板。 但爲什麼它不是在故事板上工作?有一種方法呢?

0

如果您使用的是故事板,則必須將[self.storyboard instantiateViewControllerWithIdentifier:@"viewDetail"];設置爲您的viewDetail視圖控制器。 (假設您相應地設置故事板標識符)

希望有幫助。

相關問題