Skip to content

Instantly share code, notes, and snippets.

@stexuq
Last active June 12, 2020 06:20
Show Gist options
  • Save stexuq/e4be64da31fd2cbe9ff650f5322c86e2 to your computer and use it in GitHub Desktop.
Save stexuq/e4be64da31fd2cbe9ff650f5322c86e2 to your computer and use it in GitHub Desktop.
Not use Scene Delegate when creating a new Xcode iOS Project
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