問(wèn)題:XCode 新建項(xiàng)目刪除 AppDelegate 里Scene相關(guān)報(bào)警告-- [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)")
解決方法:在info.plist文件里添加以下關(guān)鍵詞挖炬。(可以從文檔編輯里打開(kāi)info.plist文件磷瘤,復(fù)制過(guò)去)
<plist version="1.0">
? ? ?<dict>
?? ? ?? ? ?<key>UILaunchStoryboardName</key>
?? ? ?? ? ?<string>LaunchScreen</string>
?? ? ?? ? ?<key>UIApplicationSceneManifest</key>
?? ? ?? ? ?<dict>
?? ? ?? ? ?? ? ?<key>UISceneConfigurations</key>
?? ? ?? ? ?? ? ?<dict/>
?? ? ?? ? ?</dict>
?? ? ?</dict>
</plist>