标签: swiftify

iOS 13 上的应用程序启动时黑屏

我最近尝试使用 Swiftify 将 Objective-C 项目转换为 Swift。该项目已成功转换,并且没有错误/警告,但在运行该项目时,应用程序显示黑屏。

控制台中的错误是:

Info.plist configuration "Default Configuration" for UIWindowSceneSessionRoleApplication contained UISceneDelegateClassName key, but could not load class with name "SceneDelegate".
Run Code Online (Sandbox Code Playgroud)

There is no scene delegate set. A scene delegate class must be specified to use the main storyboard file.
Run Code Online (Sandbox Code Playgroud)

但从我的项目层次结构可以看出,存在一个 SceneDelegate 类。 项目层次结构

另外我的Info.plist文件的内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>$(DEVELOPMENT_LANGUAGE)</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UIApplicationSceneManifest</key> …
Run Code Online (Sandbox Code Playgroud)

objective-c swift swiftify

7
推荐指数
1
解决办法
3239
查看次数

标签 统计

objective-c ×1

swift ×1

swiftify ×1