Contents

didReceiveRemoteNotification(_:)

Tells the delegate that a remote notification arrived.

Declaration

optional func didReceiveRemoteNotification(_ userInfo: [AnyHashable : Any])

Parameters

  • userInfo:

    The remote notification dictionary. The contents of the dictionary correspond to the contents of the notification payload and are organized in the same way. For information about the contents of the remote notification payload, see TP40008194.

Discussion

If a remote notification arrives while your app is active, WatchKit calls this method to deliver the notification payload. Use this method to respond to the notification. For example, you might use this method to update your app’s interface or display a message to the user.

WatchKit may call this method multiple times. If a new remote notification with the same category arrives while your app is active, WatchKit calls the method again with the new payload.

See Also

Deprecated Methods