UILocalNotification Problem
I have a local notification that I would like to fire every 5 minutes. I use: localNotif.repeatInterval = NSMinuteCalendarUnit that will have the notification happen once every minute. I can't figure out how to get this to happen every 5 minutes or whatever other >1 minutes interval. I've tried: localNotif.repeatInterval= 5 * NSMinuteCalendarUnit and that doesn't work. Can anyone help me to solve this problem. Check out this blog http://useyourloaf.com/blog/2010/9/13/repeating-an-ios-local-notification.html Has a tutorial on how to repeat notifications with an xcode project. Also maybe it is