Tells the delegate that a local notification was triggered.
Deprecated
Instead of using this method, create a delegate object that adopts the UNUser
protocol and implement the user
and user
methods. Assign this object to the delegate
property of the singleton UNUser
object.
SDK
- watchOS 2.0–3.0Deprecated
Framework
- Watch
Kit
Declaration
- (void)didReceiveLocalNotification:(UILocal Notification *)notification;
Parameters
notification
The local notification object corresponding to the event that was triggered.
Discussion
If a local 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 local notification with the same category arrives while your app is active, WatchKit calls the method again with the new payload.