I may be wrong, but it looks like there is no public API to create/access programmatically reminders in iOS 5. However, there is an app for iPhone that can access them: see this video.
The question is: how they do this? Is there any undocumented way to access reminders ? I also looked at the relevant documentation for iCloud, but did not find anything related.
Open your iPhone's settings, tap Reminders > Default List, and select the desired list. Once you say "Hey Siri, remind me to...", it will be synced with Microsoft To Do.
For iOS 6.0
there is Event Kit
framework
grants access
to users’
Reminders.app information.
Refer ReadingAndWritingReminders link. Hope helpful
Get reminder list
EKEventStore *store = [[EKEventStore alloc] init];
[store requestAccessToEntityType:EKEntityTypeReminder completion:^(BOOL granted, NSError *error) {
NSLog(@"acces to §Reminder granded %i ",granted);
}];
NSPredicate *predicate = [store predicateForRemindersInCalendars:nil];
[store fetchRemindersMatchingPredicate:predicate completion:^(NSArray *reminders) {
for (EKReminder *reminder in reminders) {
NSLog(@"reminder %@",reminder);
}
}];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With