How to continue an NSUserActivity in SwiftUI
How to continue an NSUserActivity in SwiftUI êŽë š
Updated for Xcode 15
SwiftUI has a dedicated onContinueUserActivity()
modifier that can catch a variety of NSUserActivity
types â clicks from the web, launches from Spotlight or Siri, and more. Previously you might have handled this in your AppDelegate
using something like application(_:continue:restorationHandler:)
, but SwiftUIâs approach is more fine-grained and lets us divide functionality more easily.
To implement this, first create a function that will accept an NSUserActivity
. You donât need to do this inside your App
struct, but it would make sense to do so because you can then route it wherever you need in the rest of your program.
For example, this function checks to see whether weâre being passed in data from Spotlight, and if so pulls out the unique identifier so you can look it up in your data source:
func handleSpotlight(_ userActivity: NSUserActivity) {
if let id = userActivity.userInfo?[CSSearchableItemActivityIdentifier] as? String {
print("Found identifier \(id)")
}
}
Note
That doesnât need to check the activityType
property, because it will be filtered by SwiftUI in our next code.
Now you can attach that to your main appâs view by modifying your App
struct like this:
WindowGroup {
ContentView()
.onContinueUserActivity(CSSearchableItemActionType, perform: handleSpotlight)
}
Of course, thatâs just the bare bones of handling a user activity â youâve detected the activity and your code has been run, but now you need to do the actual work of responding to the event somehow.
If youâre not sure where to start, you should probably make your handleSpotlight()
set some shared state in your program that drives your UI, for example causing a detail view to present.