S.P.
S.P.

Reputation: 5435

How to get UILocalNotification cancellation event?

I am showing a local notification when an event occurs.If user select "View details" of UIlocalNotification we can get that event in didReceiveLocalNotification. But is there any option if user selcet "Close" ? . I checked documentation. Nothing i found. Any suggestion you have ? please help me..

Upvotes: 1

Views: 476

Answers (1)

Tomas Vana
Tomas Vana

Reputation: 18785

If the users cancels the notification, what he probably wants to say is that he's not interested in it currently. That has the effect that your application does not even enter foreground and therefore has no chance of responding to this event.

Upvotes: 2

Related Questions