OStack程序员社区-中国程序员成长平台

标题: ios - Xamarin 表格 : Launcher icon for ios [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:09
标题: ios - Xamarin 表格 : Launcher icon for ios

我正在尝试从 Mac 设置 xamarin forms ios 项目的启动器图标。

我做了以下事情,但仍然显示默认图标。

1.在解决方案资源管理器中双击Info.plist文件打开它进行编辑。

2.向下滚动到应用图标部分。

3.从源下拉列表中,选择 AppIcon-1。 enter image description here

4.打开 Assets.xcassets 并从列表中选择 App 图标。

5.选择所需类型的图像文件(未选中预渲染选项)。一些图标已经用默认图标填充,如果我改变它会得到文件未找到错误。

enter image description here

Info.plist 中的 XSAppIconAssets 路径为:

<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon-1.appiconset</string>

此任务是否有任何额外设置?我引用这个博客:https://learn.microsoft.com/en-us/xamarin/ios/app-fundamentals/images-icons/app-icons?tabs=vsmac

提前致谢。



Best Answer-推荐答案


这是因为 Assets file pathinfo.plist 中的值不匹配,您的应用程序找不到它,所以使用默认图标。

  1. 右键info.plist,用XML(Text)Editor打开,可以找到

    <key>XSAppIconAssets</key>
    <string>Resources/Images.xcassets/AppIcons.appiconset</string>
    
  2. 右键Assets.xcassets并打开包含文件夹,选择其父文件夹,你可以发现它位于YourApp.iOS而不是Resources

    enter image description here

解决方案

XSAppIconAssetsResources/Images.xcassets/AppIcons.appiconset 改为 Images.xcassets/AppIcons.appiconset ,应该可以解决问题。

关于ios - Xamarin 表格 : Launcher icon for ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49994279/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4