UINavigationBar 图像 - Objective C
如何将图像添加到作为 UIButton 的 UINavigationBar?例如,看一下 Safari 应用程序。它的底部 UINavigationBar 上有一些不错的按钮。我想在 UINavigationBar 上放置一个共享按钮。有谁知道该怎么做?有谁知道我在哪里可以找到“分享”按钮?例如,“共享”按钮的类型,可以拉出电子邮件并向某人发送电子邮件。
How can I add an image to a UINavigationBar that is a UIButton? For example, take a look at the Safari app. It has some nice buttons on the bottom UINavigationBar. I'd like to put a Share button on a UINavigationBar. Does anyone know how to do this? And does anyone know where I can get a "Share" button? For instance, the type of "Share" button that pulls up an email and emails someone something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
底部栏是
UIToolbar< /code>
按钮是
UIBarButtonItem
。您可以使用initWithImage:style:target:action:
初始值设定项来达到您的目的。The bottom bar is a
UIToolbar
and the buttons are instance ofUIBarButtonItem
. You can use theinitWithImage:style:target:action:
initializer for your purpose.