Contents

application(_:didUpdate:)

Tells the delegate that the activity was updated.

Declaration

optional func application(_ application: UIApplication, didUpdate userActivity: NSUserActivity)

Parameters

  • application:

    Your shared app object.

  • userActivity:

    The activity object containing the data associated with the task the user was performing.

Discussion

This method is called on the main thread when a user activity managed by UIKit has been updated. You can implement this method as a final opportunity to add data to the user activity object.

See Also

Continuing user activity and handling quick actions