(快速问题)UITableViewCell 背景图像 - 保持视网膜图形的分辨率
我有一个 UITableviewCell 从图像加载其背景, 我的问题是,如何保持视网膜显示屏的分辨率?
我的项目中是否有两个相同的图像,例如...
- CellBackground.png
- [ email protected]
并且 Xcode 将识别并使用第二张图片如果设备是 iPhone 4?
或者我是否只包含 Retina 分辨率的一张图像,Xcode 会将图像“缩小”到 Retina 之前的显示?
谢谢
I have a UITableviewCell that loads its background from an image,
my question is, how do i maintain resolution for the retina display?
Do i have two of the same image in the project, such as...
- CellBackground.png
- [email protected]
And Xcode will identify to use the second image if the device is iPhone 4?
or do i just include the one image at Retina resolution and Xcode will "shrink" the image to pre-Retina display?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应包含两个图像 CellBackground.png 和 [电子邮件受保护]。非视网膜显示屏 iPhone 的 RAM 和处理能力更加有限。 Xcode 不会为您缩小任何图像,因此不包含非视网膜图像将迫使旧手机从更高分辨率的视网膜显示图像中缩放背景图像。这只会损害你的滚动性能。
You should include the two images CellBackground.png and [email protected]. Non-retina display iPhones have more limited RAM and processing power. Xcode doesn't shrink any images for you, so not including a non-retina image would force older phones to scale the background image from the higher resolution retina display image. This can only hurt your scrolling performance.