在 UINavigationController 上添加按钮
我正在尝试开发我的第一个 iPhone 应用程序。我使用具有三个视图的 navigationController:主视图 -> 第一个视图 -> 第二个视图。我想仅在第一个视图上添加一个按钮,我尝试如下:
self.navigationItem.rightBarButtonItem = self.editButtonItem;
但什么也没有出现。如果我在主视图上添加按钮,它会出现在每个视图上,可以执行我想要的操作吗? 谢谢!
i'm trying to develop my first iphone apps. I'm using a navigationController with three views: main->first view ->second view. I would like to add a button only on the first view, i tried like this:
self.navigationItem.rightBarButtonItem = self.editButtonItem;
but nothing appear. If I add the button on the main view it appears after on each view, is possible to do what I want?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要添加到其他人指出的答案的另一点是,要在工具栏上添加按钮,请确保您正在访问添加到 UINavigationController 的视图控制器。您应该像这样修改视图控制器。
One more point to add to the answers pointed out by others is that for adding a button on the toolbar please ensure that you are accessing your view controller which is added to the UINavigationController.You should be modifying the view controller like this..