This may be more of a question regarding how to update arrays in general, but I have an app that is utilizing UILocalNotifications, and I want to allow users to select the notifications they have set, and edit them.
So what could I do to update an object at an index?
[[[UIApplication sharedApplication] scheduledLocalNotifications] ??];
Thanks for any help!
Once you get the
UILocalNotificationobject, you can “reschedule” it by canceling the old notification with:[[UIApplication sharedApplication] cancelLocalNotification:aNotification];and scheduling a new one:
[[UIApplication sharedApplication] scheduleLocalNotification:aNotification];