如何向导航栏添加项目
我是 iPhone 开发新手。
通过使用上面的源代码
UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithTitle:@"SAVE"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(saveButtonClicked)];
self.navigationItem.rightBarButtonItem = saveButton;
,我可以创建导航 rightbarbuttonitem 但我无法添加更多项目...我需要添加更多按钮
请为我提供一个示例代码来尝试一下
感谢您的任何帮助并感谢您的时间
I am new to iPhone development.
source code
UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithTitle:@"SAVE"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(saveButtonClicked)];
self.navigationItem.rightBarButtonItem = saveButton;
by using the above , i can create navigation rightbarbuttonitem but i cant add more items into it...i need to add more buttons
please provide me a sample code to try it out
Thanks for any help and thanks for your time
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将工具栏添加到导航栏
祝一切顺利。
Add tool bar to Navigation bar
All the best.
使用DDActionHeaderView。您可以轻松添加和管理项目。
Use DDActionHeaderView. You can add and manage items easily.