Domanda

I set an alarm through my app in objective c for a particular time. Is it possible to disable that alarm programmatically from the app ?

È stato utile?

Soluzione

if you are setting alarm through local notification, then you can cancel it by below code

    [[UIApplication sharedApplication] cancelAllLocalNotifications];
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top