Difference between revisions of "NotificationManager:cancelNotification"

From GiderosMobile
Line 8: Line 8:
 
  NotificationManager:cancelNotification()
 
  NotificationManager:cancelNotification()
 
</source>
 
</source>
 +
=== Examples ===
 +
'''Cancel notification'''<br/>
 +
<source lang="lua">--id of notification to cancel
 +
local id = 1
 +
 +
--cancel through notification isntance
 +
local notification = Notification.new(id)
 +
notification:cancel()
 +
 +
--cancel through NotificationManager
 +
local mngr = NotificationManager:getSharedInstance()
 +
mngr:cancelNotification(id)</source>

Revision as of 11:45, 23 August 2018

Available since: Gideros 2011.6

Description

Cancel specific scheduled notification by it's ID.

Basically it's the same as creating new notification with same ID and cancelling it:

 NotificationManager:cancelNotification()

Examples

Cancel notification

--id of notification to cancel
local id = 1

--cancel through notification isntance
local notification = Notification.new(id)
notification:cancel()

--cancel through NotificationManager
local mngr = NotificationManager:getSharedInstance()
mngr:cancelNotification(id)