将右栏按钮添加到导航栏的问题
Posted
技术标签:
【中文标题】将右栏按钮添加到导航栏的问题【英文标题】:problem with adding right bar button to the navbar 【发布时间】:2011-06-03 14:28:40 【问题描述】:大家好,
我有一个带有导航控制器的导航栏。在我的一个观点中,我想添加一个自定义右栏按钮项。我正在尝试使用以下代码执行此操作,但它没有发生!谁能帮帮我?
谢谢。
代码:
////setup the top right save button
UIBarButtonItem *saveButton=[[UIBarButtonItem alloc] initWithTitle:@"Save" style:UIBarButtonItemStyleDone target:self action:@selector(saveClicked)];
self.navigationController.navigationItem.rightBarButtonItem=saveButton;
[saveButton release
【问题讨论】:
你把这个 sn-p 放在哪里了? @PengOne 在 viewWillAppear 函数中! 【参考方案1】:可能在第二行调用 navigationController 是多余的,尝试删除它:
self.navigationItem.rightBarButtonItem = saveButton;
【讨论】:
以上是关于将右栏按钮添加到导航栏的问题的主要内容,如果未能解决你的问题,请参考以下文章