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

2023-02-07  本文已影响0人  Su_per_man

解决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

上一篇 下一篇

猜你喜欢

热点阅读