setBackgroundImage 行为在 ipad 4.2 上发生更改
更新到 4.2 后,setBackgroundImage 行为发生了变化! 在我的自定义 uibutton 中,我有一个白色图像作为背景(使用 setBackgroundImage:forState: 设置)和另一个具有透明层的图像(使用 setImage:forState: 设置) 在 iPad 3.2 和所有版本的 iPhone 上,此内容呈现为
而在装有 ios 4.2 的 iPad 上,它会呈现为
http://i52.tinypic.com/530005.png
我不知道背景图像是否扩展到其边界(256x128)之外,或者是否缩小了上面图像的大小。 这种情况在设备和模拟器上都会发生。
after the update to 4.2 the setBackgroundImage behaviour changed!
in my custom uibutton i have a white image as background (set with setBackgroundImage:forState:) and another image with a transparent layer (set with setImage:forState:)
On iPad 3.2 and on all versions of iPhone this gets rendered as
while on an iPad with ios 4.2 it gets rendered as
http://i52.tinypic.com/530005.png
i don't know whether the background image is spreading outside its bounds (256x128) or it reduces the size of the above image.
This happens both on device and on simulator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过长时间的搜索,我找不到这背后的任何原因。
我通过以编程方式加载自定义按钮而不是从 Interface Builder 来解决这个问题。
我希望它有帮助。
Well after a long search, I couldn't find any reason behind this.
I worked around it by loading the custom button programmatically instead of from Interface Builder.
I hope it helps.