iOS Code Snippet UserNotificationCenter class - RemoveAllPendingNotifications


This is an addition to the UserNotificationCenter class.

B4X:
'Removes all of your app’s pending local notifications.
Public Sub RemoveAllPendingNotifications
    NotificationCenter.RunMethod("removeAllPendingNotificationRequests", Array())
End Sub
 
Top