如何在添加新支持和 iOS 15.0 部署的情况下正确更新旧 Swift 项目中的 Assets.xcassets设备?
最近,一个用 Swift 开发的旧项目需要新的图标来实现并在飞行测试中启动它,但它不支持 iOS 15.0 + AppIcon。
我尝试过的问题:
- 转换图像并在 AppIcon 中导入图像,但它显示没有链接
也尝试将所有 png 文件分别添加到 info.plist 中的 iconImages
- 使用图标生成器将原始图像转换为所需的图像以下图像的条件::
- 尝试过 https://stackoverflow.com/a/47007270/17484834 的修复,但它在抑制其他错误的同时给出以下错误。
资源的 PNG 格式的应用程序图标,尺寸为 1024 x 1024 像素 为 iOS、iPadOS 或 watchOS 构建的应用目录
iPad 的应用程序图标,像素精确为“152x152”,采用 .png 格式 iOS 版本 >= 10.0。为了支持较旧的操作系统,该图标可能 需要在资产目录之外的捆绑包中
iPad 的应用程序图标,像素精确为“167x167”,采用 .png 格式 支持 iPad Pro 的 iOS 版本
iPhone / iPod Touch 的应用程序图标,像素精确为“120x120”,尺寸为 iOS 版本 >= 10.0 的 .png 格式
目前我的 AppIcon 中有以下内容::
Recently, one the old projects developed in Swift required new icons for achieving and launching it in flight test but it has no support for iOS 15.0 + AppIcon.
What i Tried and issue:
- Converted the images and imported the images in AppIcon but it shows no linkage
also tried adding all png files to iconImages in info.plist individually too
- Used Icon Generator to convert original image to required conditions for following images::
- Tried https://stackoverflow.com/a/47007270/17484834 's fix but it gives below error while suppressing other errors.
An app icon measuring 1024 by 1024 pixels in PNG format for Asset
Catalog of apps built for iOS, iPadOS, or watchOSan app icon for iPad of exactly '152x152' pixels, in .png format for
iOS versions >= 10.0. To support older operating systems, the icon may
be required in the bundle outside of an asset catalogan app icon for iPad of exactly '167x167' pixels, in .png format for
iOS versions supporting iPad Proan app icon for iPhone / iPod Touch of exactly '120x120' pixels, in
.png format for iOS versions >= 10.0
Currently i have following in my AppIcon ::
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工作(简单)解决方案:
其他解决方案:
Working(Easy) Solution:
Other Solution: