加载本地化的 UIImage
我需要在我的 iOS 应用程序中加载本地化图像,但还必须考虑到它们可能需要是 ...@2x
类型。我该怎么做?
I need to load localized images in my iOS app, but also have to take into account that they might need to be the ...@2x
kind. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更正的答案
[UIImage imageNamed:@"TestImage"]
首先查找资源,如果没有找到,则查找 lproj 目录文件夹。所以你只需要将本地化的图片放入正确的文件夹中即可。旧答案
NSLocalizedString 应该可以解决问题。请参阅 本地化字符串资源。
Corrected Answer
[UIImage imageNamed:@"TestImage"]
looks first into Resources, if nothing found, it then looks in the lproj dir folders. So you only need to put the localized images into the right folder.Old Answer
NSLocalizedString should do the trick. See Localizing String Resources.