Skip to content

Instantly share code, notes, and snippets.

@numanayhan
Created December 16, 2019 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save numanayhan/68beca0ae5d1fc50b07dafe1d0d34b1d to your computer and use it in GitHub Desktop.
Save numanayhan/68beca0ae5d1fc50b07dafe1d0d34b1d to your computer and use it in GitHub Desktop.
AppDelegate
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
return true
}
func applicationWillResignActive(_ application: UIApplication) {
}
func applicationDidEnterBackground(_ application: UIApplication) {
}
func applicationWillEnterForeground(_ application: UIApplication) {
}
func applicationDidBecomeActive(_ application: UIApplication) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment