Updated for Xcode 14.2
SwiftUI apps launch using a custom struct that conforms to the App
protocol, but sometimes you might want to get back the old UIApplicationDelegate
functionality we used to have – perhaps to handle registration for push notifications, to respond to memory warnings, to detect time changes, and so on.
To do this, first create a custom class that inherits from NSObject
and conforms to the UIApplicationDelegate
protocol, like this:
class AppDelegate: NSObject, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
print("Your code here")
return true
}
}
I’ve added didFinishLaunchingWithOptions
in there, but you only need to implement the methods you care about.
And now in your App
scene, use the UIApplicationDelegateAdaptor
property wrapper to tell SwiftUI it should use your AppDelegate
class for the application delegate.
@main
struct NewIn14App: App {
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
SwiftUI is responsible for creating that delegate and looking after its lifetime, so you can go ahead and add any other app delegate functionality to that class to have it called.
Tip: For push notifications, you should probably adjust the delegate
property of UNUserNotificationCenter.current()
so that it points to a custom class you own.
SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.