如何为应用程序自定义 iPad Icon 主屏幕?
我在我的项目中放入了一个 png 文件作为图标。我尊重尺寸 (72x72),并且我的图标没有出现在我的主屏幕中。默认情况下我仍然有白色图标... 它的名字是icon.png,这个名字对吗? 奇怪的是该图标出现在我的模拟器上但不在我的设备中
有人可以帮助我吗?
谢谢
I put in my project a png file for the icon. I respect the dimensions (72x72) and my icon does not appear in my home screen. I still have the white icon by default...
It is named icon.png , the name is right ?
The weird thing is the icon appear on my simulator but not in my device
Can anyone help me ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以随意命名它;但你需要在你的plist文件中设置图标。 CFBundleIconFile 键(“图标文件”)。将其设置为与图像的名称相同。如果您的图标显示在模拟器上,但没有显示在设备上,请确保进行干净的构建。
You can name it whatever you want; but you need to set the icon in your plist file. The CFBundleIconFile key ("Icon File"). Set that equal to the name of your image. If your icon shows up on your simulator, but not your device, make sure you do a clean build.
应用程序图标的默认名称是
Icon.png
(第一个字母不是大写 - ios 文件系统区分大小写)。但是,您可以在 info.plist 文件中为应用程序图标指定任何其他名称 - 检查Icon File
键。The default name for application icon is
Icon.png
(not the 1st letter is uppercase - ios filesystem is case-sensitive). However you can specify any other name for application icon in info.plist file - checkIcon File
key.