Is there a way to add, read, or delete reminder items from the new iOS 5 built-in Reminders app?
|
|
This will be all possible with iOS 6! :) https://developer.apple.com/technologies/ios6/ At the time of writing this answer was sufficient. To keep it updated here is a tutorial which looks very useful for anyone developing an app which interacts with the native reminders app: Using iOS 6 Event Kit to Create Date and Location Based Reminders |
||||
|
|
|
The reminders are not on a public API. The "geofences" that are created are visible to some processes (I've seen the fence count in console logs) but in no way accessible to another app. You are only able to register fences to your own app. |
|||||||
|
|
I am abut to do the same task,use sqlite database, tapku library, and push notification in ios. if you finished this task means let me know... |
|||||
|
|
I do not believe this is possible. There is no public API that is available for developers. |
|||
|
|
|
I'd really like access to the reminders too, I found a post explaninf adding events to the calendar here .. Programmatically add custom event in the iPhone Calendar While the Calendar is "ok" for reminders, it makes more sence to use the IOS 5 "Reminders" app, after all SIRI can use it! :p EDIT: I solved my problem by using Local Notifications....
This allows me to set notifications which appear like Push Notifications and they are preserved even when the app is restarted. You can clear them if needed with ..
Plasma |
||||
|
|
|
I can help you out with the trigger on arriving on predefined location. here is the code. 1: import CoreLocation.framework 2: in viewController.h file place below code
3: inviewController.m
|
|||
|
|
