I am making the application that has needs to set the notification , thankfully i was able t set the local notification but i dont know how to delete the notification which is set by this application(my aplicaton ).The xcode does provide functionality of delete with removeAllNotifications but you cannot remove the selected notifications set by the application
Share
You can call
[[UIApplication sharedApplication] cancelLocalNotification:notification]to cancel a notification. Since local notifications conform to theNSCodingprotocol, they can be stored and retrieved for later canceling.