视网膜显示兼容性
对于我们的 iPhone 应用程序,我们使用 50 x 50 用户图像(来自 facebook)。它适用于 iPhone 3G 和 3GS,但不适用于 iPhone 4,因为它具有高分辨率显示屏。对于 iPhone 4,我们尝试发送 100 x 100(可变高度)图像,但由于显而易见的原因,它不起作用。有什么想法吗?
For our iPhone app, we are using 50 x 50 user image (from facebook). It works fine for iPhone 3G and 3GS but not for iPhone 4 due to its high resolution display. For iPhone 4 we tried to send 100 x 100 (variable height) image but it is not working for obvious reasons. Any thought?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要为 Retina 显示屏做任何不同的事情。使用与旧款 iPhone 上完全相同的图像将获得完全相同的效果。
如果您想要显示更高分辨率的图像,那么如果您使用
@2x
后缀保存文件,那么如果设备具有 Retina 显示屏,它将选择该图像。在大多数情况下,它不需要任何额外的代码。You don't need to do anything different for the Retina Display. Using exactly the same image as you have on the older iPhone will work exactly the same.
If you have a higher resolution image that you'd like to display instead, then if you save the file with a
@2x
suffix then, if the device has a Retina display, it will pick that instead. In most cases it should not require any extra code.