如何添加带有“'+'”的方形按钮到 uinavigationbar 上吗?
就像此图中所示的右侧按钮一样。 https://i.sstatic.net/D2Q61.jpg 这是苹果提供的默认按钮吗? 如果是,那么如何将其添加到导航栏?
Like the right button shown in this image.
https://i.sstatic.net/D2Q61.jpg
Is it a default button provided by apple?
If yes then how do I add it to the navigationBar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,
[+]
按钮是 Apple 提供的默认按钮。它是UIBarButtonSystemItemAdd
标识符。下面是一些让它工作的代码:
您需要定义
someMethod
,这样您的程序就有在点击按钮时运行的代码。Yes, that
[+]
button is a default button, provided by Apple. It is theUIBarButtonSystemItemAdd
identifier.Here's some code to get it working:
You will need to define
someMethod
, so your program has code to run when the button is tapped.