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