iPhone 4 的 UIImage 图块的最大尺寸
我有一个 iPhone 应用程序,其中包含一个大型静态图像,该图像被切成 1024x1024 的图块并放入 UIScrollView 中。我不清楚是否可以在 iPhone 4 上使用更大的图块。
如果我想支持 iPhone 4 的双分辨率图像,我应该:
- 创建带有 @2x 后缀的 2048x2048 图块 或者
- 创建 4 倍数量的 1024x1024 图块并编写逻辑以加载到 iPhone 4 上的这些图块中
I have an iPhone app containing a large static image, which is sliced into 1024x1024 tiles and put in an UIScrollView. I'm not clear whether I can use larger tiles on the iPhone 4.
If I want to support a double-res image for iPhone 4, should I:
- Create 2048x2048 tiles with a @2x suffix
or - Create 4 times as many 1024x1024 tiles and write logic to load in these tiles on the iPhone 4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 iPhone 4,创建带有 @2x 后缀的 2048x2048 图块。那么你还没有改变你的代码。只需添加这些图像即可。
For iPhone 4 create 2048x2048 tiles with a @2x suffix. Then you have not change your code. Just add these images.