如何在 UIToolbar 的 UIBarButtonItem 上显示我自己的图像
我之前在论坛上看到过这个问题的变体,但我不太明白解决方案。
我有一个常规的 ViewController,在底部托管一个 UIToolbar。 工具栏有几个 UIBarbuttonItems 例如其中之一有: 风格: 素色 标识符:自定义 标题:
现在停止我希望它显示我提供的图像 所以我添加 图片:MyImage.png
现在我得到一个不透明的灰色矩形而不是我的图像。
UIBarButtonItem 上显示的图像是否有特定要求? 尺寸?奥城?其他?
I have seen variations of this question before in the forum, but I did not quite understand the solutions.
I have a regular ViewController that hosts a UIToolbar at the bottm.
The toolbar has several UIBarbuttonItems for example one of them has:
Style: Plain
Identifier: Custom
Title: Stop
Now I want it to display an image I heve provided
So I add
Image: MyImage.png
Now I get an opaque gray rectangle instead of my image.
Are there specific requirements from images that are to be show on a UIBarButtonItem?
Size? Opcity? other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对图像的具体要求是它与工具栏兼容,因为 Alpha 通道保存相关的像素数据,而 RGB 值只是用于混合的灰度 - 可能是白色或黑色。
更多信息: http://developer.apple .com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html
The specific requirement for the image is that it be toolbar-compatible, in that the alpha channel holds the pertinent pixel data, and the RGB values are simply a grayscale for blending-- likely white or black.
More info: http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html