视网膜兼容性问题:我可以将 @2x 添加到我自己的图像中以实现视网膜兼容性吗?
如果我将 @2x 后缀附加到我自己的图像中,iOS 4 是否会自动将我的图像替换为 Retina 兼容图像,还是仅适用于 Apple 定义的图像? (例如图标。)
If I append the @2x suffix to my own images, will iOS 4 automatically replace my images with the Retina compatible ones, or does that only apply to Apple defined images? (Icons, for example.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的当然。如果您在应用中显示
myimage.png
,则可以添加视网膜就绪的[电子邮件受保护]
,因此它显示在视网膜设备上。请参阅 本指南了解更多信息。
Yes, of course. If you display a
myimage.png
in your app, you may add a retina ready[email protected]
, so it is shown on retina devices.See this guide for further information.
从文档中:
因此,例如使用
[UIImage imageNamed:@"MyImage.png"]
将自动查找[电子邮件受保护]
在具有视网膜显示屏的设备上运行时。From the documentation:
So using for example
[UIImage imageNamed:@"MyImage.png"]
will automatically look for[email protected]
when running on a device with retina display.