/Applications/Xcode.app/Contents

2023-06-04  本文已影响0人  师景福

关于Xcode 14.3这个问题的解决方案:

第一种方案podfile文件添加

# Uncomment the next line to define a global platform for your project

post_install do |installer|

  installer.pods_project.targets.each do |target|

    target.build_configurations.each do |config|

      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'

    end

  end

end

第二种方案:

再pod里面自己一个一个的更改成11.0 的版本

进行打包操作。执行到Run custom shell script '[CP] Embed Pods Frameworks'时报错

将文件中的source="$(readlink "${source}")"替换为source="$(readlink -f "${source}")",

详文可以从这个网址学习一下:https://blog.csdn.net/crasowas/article/details/129974391

关于欢迎页面图片显示不出来的问题,更换名字也不显示,用别的图片就可以显示

把欢迎页面的的图片不要放到Assets里面了,拿出来换个名字,放到新的文件夹中,


上一篇下一篇

猜你喜欢

热点阅读