xcode 要在 plist 中指定的图标文件
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5343398/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
icon files to specify in plist
提问by testndtv
Which/How many icon files are necessary to be included and specified in plist ?
在 plist 中需要包含和指定哪些/多少图标文件?
I am getting error " Unable to verify icon dimensions, no icon found..." in Application Loader..
我在应用程序加载器中收到错误“无法验证图标尺寸,未找到图标...”。
采纳答案by Parth Bhatt
Icon file 512 X 512 pixels is not enough. Infact in your plist you need to add 57 X 57 pixels icon which is in PNG Format
图标文件 512 X 512 像素是不够的。事实上,在您的 plist 中,您需要添加 PNG 格式的 57 X 57 像素图标
If you are developing iPhone app then the iPhone app icon should be 57 X 57pixels exact and one high resolution icon which is 512 X 512pixels.
如果您正在开发 iPhone 应用程序,那么 iPhone 应用程序图标应该是57 X 57像素精确和一个512 X 512像素的高分辨率图标。
You need to add the 57 X 57 pixel icon as your app icon in your project's plist.
您需要在项目的 plist 中添加 57 X 57 像素图标作为应用程序图标。
So I think error suggests that you have not added your application icon (57 X 57 pixels.
所以我认为错误表明您尚未添加应用程序图标(57 X 57 像素。
This icons need to be in PNGformat.
此图标需要为PNG格式。
It may be the case that you might have added the icon name is your project's plist but you may not have referenced or added the icon to your app's resources or bundle.
可能的情况是,您可能已将图标名称添加到项目的 plist 中,但您可能尚未将图标引用或添加到应用程序的资源或包中。
Note: 512 X 512 pixels icon is not required to be included in Project bundle.
注意:项目包中不需要包含 512 X 512 像素的图标。
It needs to be similar to your application icon.
它需要与您的应用程序图标相似。
It is to be added to iTunes Page for your app when you submit your app on iTunes.
当您在 iTunes 上提交您的应用程序时,它将被添加到您的应用程序的 iTunes 页面。
Hope this helps you
希望这对你有帮助
回答by amattn
Here is the document you need.
这是您需要的文件。
QA1686
QA1686
http://developer.apple.com/library/ios/#qa/qa1686/_index.html
http://developer.apple.com/library/ios/#qa/qa1686/_index.html
Make sure the icon file is added to your project and matches the entry in your plist file. See above document for details.
确保图标文件已添加到您的项目中并与 plist 文件中的条目匹配。有关详细信息,请参阅上述文档。
回答by Jhaliya
As much you need in your project except application icon and splash screen :)
除了应用程序图标和启动画面外,您的项目中需要多少:)