在应用程序包中添加多语言图标以进行应用程序审批提交的位置 - iPhone
这里有人可以告诉我在哪里添加多语言 iPhone 应用程序的图标文件,每种语言都有其翻译的图标吗?
下面链接中提到的例程显示了将一种语言图标文件添加到应用程序包的资源文件夹中,但不包括多语言图标添加。 http://developer.apple.com/library/ios/#qa /qa1686/_index.html。
谢谢
,太好了,我从项目的 Resources 文件夹中删除了之前的 Icon.png 引用,然后按照您上面提到的方式添加了所有图像。该项目构建并运行良好,但该图标没有出现在我的测试 iPhone4 设备上。以下是 info.plist 的当前设置。
(信息属性列表) ----------- 值
图标文件
图标文件
项目 0 ------------------------------ ---------- Icon.png
第 1 项 -------------------------------------- -- [email protected]
资源文件夹 Files
Icon.png 目录,包含所有图标图像 例如英语、法语
[email protected] 目录包含所有图标图像例如英语、法语
非常感谢任何帮助。谢谢
B.TW:我是这个论坛的新手,否则我会发布 Resources 文件夹和 info.plist 的快照,以便为您提供清晰的图片。
could anyone here please let me know where to add icons files in a bundle for a multi language iphone application with each language having its translated icons?
The routine mentioned in the below link shows addition of one language icon files to the Resources folder of the application bundle but does not cover multi language icons addition. http://developer.apple.com/library/ios/#qa/qa1686/_index.html.
Thanks
Great, i deleted the previous Icon.png reference from the Resources folder of the project and then added all the images the way you mentioned above. The project builds and run fine but the Icon does not appear on my test iPhone4 device. Below are the current setting of info.plist.
(Information Property List) ----------- Values
Icon file
Icon files
Item 0 ------------------------------------- Icon.png
Item 1 ------------------------------------- [email protected]
Resource folder Files
Icon.png directory containing all the Icon images E.g. English, French
[email protected] directory containing all the Icon images E.g. English, French
Any help is much appreciated. Thanks
B.T.W: I am new to this forum otherwise i would have posted the snapshots of Resources folder and info.plist to give you a clear picture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在主包中创建 lproj 目录并将图标放入其中。
在您的项目目录中创建“en.lproj”和“fr.lproj”目录,在每个目录中复制对应的 Icon.png 和 [email protected](en目录中的英文版本以及 fr 目录中的法语版本)。
转到 en.lproj 目录并将图标拖放到导航项目中(确保禁用复制选项),然后转到 fr.lproj 并进行相同的操作。
在那里你可以构建、运行并进行测试。
You need to create the lproj directories in your main bundle and put your icons in there.
In your project directory create "en.lproj" and "fr.lproj" directories, the in each copy the corespondent Icon.png and [email protected] (the english versions in en directory and the french version in fr directory).
The go to en.lproj directory and drag and drop the icons in to the navigation project (make sure that the copy option is disabled), then go to fr.lproj and to the same operation.
There you go build and run and make the test.