How to clean up Push Notifications From Notification Center

Is there any way to erase a Push Notification from Notification Center? system.cancelNotification seems to handle only local notifications. [import]uid: 182540 topic_id: 32760 reply_id: 332760[/import]

I’m not the expert here (I’m an Android guy), but I believe this is an iOS limitation. There is no way to clear individual push notifications from the notification center.

That said, I believe you can clear all notifications by setting the application badge number to zero as shown below. I haven’t tried this for myself, but I recommend that you give it a go.
[lua]native.setProperty(“applicationIconBadgeNumber”, 0)[/lua]

[import]uid: 32256 topic_id: 32760 reply_id: 130325[/import]

I’m not the expert here (I’m an Android guy), but I believe this is an iOS limitation. There is no way to clear individual push notifications from the notification center.

That said, I believe you can clear all notifications by setting the application badge number to zero as shown below. I haven’t tried this for myself, but I recommend that you give it a go.
[lua]native.setProperty(“applicationIconBadgeNumber”, 0)[/lua]

[import]uid: 32256 topic_id: 32760 reply_id: 130325[/import]

Thanks, it worked just like you said. [import]uid: 182540 topic_id: 32760 reply_id: 130535[/import]

Thanks, it worked just like you said. [import]uid: 182540 topic_id: 32760 reply_id: 130535[/import]