美文网首页
解决xcode14删除SceneDelegate后报 -- [S

解决xcode14删除SceneDelegate后报 -- [S

作者: Su_per_man | 来源:发表于2023-02-07 17:35 被阅读0次

解决xcode14删除SceneDelegate后报 -- [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)")提示,在Info.plist添加代码:

<plist version="1.0"> 
    <dict> 
        <key>UILaunchStoryboardName</key> 
        <string>LaunchScreen</string>
        <key>UIApplicationSceneManifest</key> 
        <dict> 
            <key>UISceneConfigurations</key> 
            <dict /> 
        </dict> 
    </dict>
</plist>

复制代码

在UILaunchStoryboardName下面添加一句<key>UIApplicationSceneManifest</key> <dict> <key>UISceneConfigurations</key> <dict/> </dict>

解决xcode14删除SceneDelegate后报 -- [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)")提示,在Info.plist添加代码:
<plist version="1.0">
<dict>
<key>UILaunchStoryboardName</key>
<string></string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UISceneConfigurations</key>
<dict />
</dict>
</dict>
</plist>
复制代码
在UILaunchStoryboardName下面添加一句<key>UIApplicationSceneManifest</key> <dict> <key>UISceneConfigurations</key> <dict/> </dict>

参考:Jony唐 https://juejin.cn/post/7192796503839080505

相关文章

网友评论

      本文标题:解决xcode14删除SceneDelegate后报 -- [S

      本文链接:https://www.haomeiwen.com/subject/pakfkdtx.html