除了 @2x 之外,还有其他方法可以让 iOS 知道图形已准备好 Retina 显示吗?
我有一个网络服务,可以生成两个版本的图形;一个用于正常显示,另一个用于视网膜显示。
不幸的是,我无法将 @2x 添加到文件名中,因为我无权访问该代码。
有什么方法可以让 iPhone 知道从网络加载的是 @2x 图形吗?
I have a web service producing two versions of graphics; one for Normal Display and another for Retina Display.
Unfortunately I can't add the @2x to the filename since I don't have access to that code.
Is there any way to let the iPhone know that what's loading from the web is a @2x graphic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,当您将图像资源加载到 UIImage 中时,您可以自己设置该图像的比例,即。告诉 iOS 你的图像是否是@2x。
这是加载 @2x 图像的代码(在示例中来自文件,但您可以放置任何您想要的内容):
这是加载低分辨率图像的代码:
干杯,Marin
Yes there is ... when you load an image resource into an UIImage you can set the scale of that image yourself, ie. tell the iOS whether your image is @2x or not.
This is the code to load the @2x images (in the example from a file, but you can put whatever you want):
This is the code to load low res images:
Cheers, Marin