TagUILocalNotification

How to Create UILocalNotification, repeating every minute ?

H

There are two types of notifications in iOS, One is Local notification & other is PUsh notification. Added code to create Local notification. // creating notification NSDate *newDate = [NSDate dateWithTimeIntervalSinceNow:60]; // where 60 = seconds, so add your seconds here Class cls = NSClassFromString(@”UILocalNotification”); if (cls != nil) { UILocalNotification *notification =...

Category