Last active
June 12, 2020 06:20
-
-
Save stellaqx/e4be64da31fd2cbe9ff650f5322c86e2 to your computer and use it in GitHub Desktop.
Not use Scene Delegate when creating a new Xcode iOS Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Remove Scene delegate methods from AppDelegate and delete the Scene delegate file. | |
2. remove UIApplicationSceneManifest from Info.plist. | |
3. we need to add a window property in AppDelegate `@property(nonatomic, strong) UIWindow *window;` For Swift, add `var window: UIWindow?` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment