是否嘗試過這個網站,我只是不明白我的模式視圖東西上所有的例子,我也看到了導航欄雖然,但其空無法在右邊或左邊欄按鈕項目添加到我的導航控制器
EditEntityViewController *editEntityViewController = [[EditEntityViewController alloc] init];
editEntityViewController.currentNode = newNode;
editEntityViewController.delegate = self;
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:editEntityViewController];
navController.modalPresentationStyle = UIModalPresentationFormSheet;
navController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Show"
style:UIBarButtonItemStylePlain
target:self
action:@selector(refreshPropertyList:)];
editEntityViewController.navigationItem.rightBarButtonItem = anotherButton;
[anotherButton release];
[self presentModalViewController:navController animated:YES];
[editEntityViewController release];
在模態視圖中使用導航控制器有點奇怪。你有沒有嘗試在你的editEntityViewController中使用UINavigationBar,而是將你的按鈕添加到該按鈕? – onnoweb
是的,但它不會產生與我想要做的相同的效果 – TheLearner
在模態視圖中使用導航控制器並不奇怪。這是將導航欄添加到模態表的標準方式。 TheLearner正在做的是完全可以接受的,我不明白爲什麼它不起作用。 –