iPhone 在导航栏中添加项目/行按钮
是否有一种标准方法可以在导航栏中实现如下所示的按钮?如果没有,我当然可以只使用图像或自定义视图,但由于它在很多应用程序中使用,我认为可能缺少一种方法。
Is there a standard way to implement a button like the one below in a navigation bar? If not I can, of course, just use an image or maybe a custom view but as it's used in quite a few apps I thought there may be a method I'm missing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此代码用于创建 + 按钮。
this code use for creating + button.
这是标准 UIBarButtonSystemItem 系统图标之一 (
UIBarButtonSystemItemAdd
) - 请查看 UIBarButtonItem 类参考中的initWithBarButtonSystemItem:target:action:
方法。That's one of the standard UIBarButtonSystemItem system icons (
UIBarButtonSystemItemAdd
) - take a look at theinitWithBarButtonSystemItem:target:action:
method in the UIBarButtonItem Class Reference.