通用应用程序中的 Icon.png 文件错误
我在构建 Release -
iPhone/iPod Touch 时收到此警告:icon.png:图标尺寸 (72 x 72) 不符合尺寸要求。图标文件必须为 57x57 像素,采用 .png 格式 (-19014)
这是一个通用应用程序,我的项目中有两个 icon.png 文件,其中一个在 iPhone -> 中。 iPad 中的图像和其他 ->图像。
另外,在 info.plist 文件中,我将 Icon 文件设置为“icon”(没有任何扩展名),我假设它会相应地找到适用于 iPhone 3 、iPhone 4 和 iPad 的正确文件。
我该如何解决这个警告?
I am getting this warning while building for Release -
iPhone/iPod Touch: icon.png: icon dimensions (72 x 72) don't meet the size requirements. The icon file must be 57x57 pixels, in .png format (-19014)
This is a universal app and I have two icon.png files in my project one in iPhone -> images and other in iPad -> images.
Also in info.plist file I set Icon file to "icon" (without any extension) I am assuming that it will find the correct file for iPhone 3 , iPhone 4 and iPad accordingly.
How can I resolve this warning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
如果您需要 2 个图标(一个 57 x 57 和一个 114 x 114),对于 iPhone 来说这是正确的,它会选择正确的图标。
但对于 ipad,您需要创建一个 72 x 72 图标,用不同的名称命名并在 infoplist 中设置其名称。
顺便说一句在 xcode 4 中你有一个简单的 UI 来设置图标。
您可以在这里阅读更多内容:
http://developer.apple.com/library/ios/#qa /qa1686/_index.html
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我遇到了同样的问题,只需转到“编辑项目设置”->“构建->取消勾选压缩PNG文件,一切就OK了。
i had the same problem, just go to Edit Project Settings -> Build -> uncheck Compress PNG Files,and everything be OK.