- userNotificationCenter:didActivateNotification:
Sent to the delegate when a user clicks on a user notification presented by the user notification center.
ユーザ通知センターによって提示されるユーザ通知上でユーザがクリックする時に委任先に送られます。
Availability 有効性
Technology
- (void)userNotificationCenter:(NSUserNotificationCenter
*)center
didDeliverNotification:(NSUserNotification
*)notification;
center
The user notification center. ユーザ通知センター。
notification
The user notification object. ユーザ通知オブジェクト。
This method is always called, regardless of your application state and even if you deliver the user notification yourself using deliver
.
このメソッドは常に呼び出されます、あなたのアプリケーション状態に関係なく、そしてたとえあなたがそのユーザ通知をあなた自身でdeliver
を使って配達するとしても。
This delegate method is invoked before the user
delegate method.
この委任先メソッドは、user
委任先メソッドの前に発動されます。
- userNotificationCenter:didActivateNotification: