我有NavigationViewController類,並在viewDidload
方法 這樣。但酒吧按鈕不顯示任何線索?NAvigationController欄按鈕不顯示
MapViewController *p=[[MapViewController alloc]initWithNibName:self.nibName bundle:[NSBundle mainBundle]];
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc]
initWithTitle:@"Code"
style:UIBarButtonItemStylePlain
target:self
action:@selector(showDocco:)];
[[self navigationController] setNavigationBarHidden:NO animated:NO];
self.navigationItem.rightBarButtonItem = rightButton;
self.modalPresentationStyle=UIModalPresentationFormSheet;
[self pushViewController:p animated:YES];
這不會提供問題的答案。要批評或要求作者澄清,在他們的帖子下留下評論 - 你總是可以評論你自己的帖子,一旦你有足夠的[聲譽](http://stackoverflow.com/help/whats-reputation),你會能夠[評論任何帖子](http://stackoverflow.com/help/privileges/comment)。 –
實際上modalviewcontrollers不會帶有導航欄。你必須添加工具欄代替導航欄並添加barbutton item.and酒吧按鈕項目的功能是相同的只是關閉模式視圖或呈現模態視圖.. – NHS