哪里可以找到“后背”? UIToolBar 的三角形按钮?
有谁知道在哪里可以找到 UIButton 的后三角按钮。我需要它作为应用程序内的网络浏览器。这是我到目前为止所得到的,但使用快退按钮看起来是错误的。我在此视图上使用界面生成器,如果我可以获得正确的 png,我可以设置 UIBarButton 图像。我偶然发现了访问 SDK 私人艺术品的文件路径,但后来我丢失了它,我想它会在那里。
Does anyone know where I can find the back triangle button for the UIButton. I need it for a in app webbrowser. Here's what I've got so far, but it looks wrong using the rewind button. I'm using interface builder on this view and if I could get the proper png I could set the UIBarButton image. I stumbled on the file path to access the SDKs private artwork but I've since lost it, I imagine it would be in there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
德迪科尔是对的。 UIToolbarItem 的默认图像中不包含后退按钮。实现这一目标有两种可能性。
1)创建您自己的带有三角形的图像。 (简单的方法)
2)子类 UIToolbarItem 并重写
drawInRect:
方法以使用 CoreGraphics 调用绘制三角形。 (更难,但可以调整大小)我自己没有尝试第二种方法,但它应该有效,因为我对其他对象做了类似的事情。 ;-)
桑德罗·迈耶
Deddiekoel is right. The back button is not included in the default images for a UIToolbarItem. There are two possibilities on achieving this.
1) Create your own image with a triangle in it. (simple way)
2) Subclass UIToolbarItem and override the
drawInRect:
method to draw your triangle with CoreGraphics Calls. (Harder but it's resizeable)I didn't try the second way myself, but it should work because I did similar things with other objects. ;-)
Sandro Meier