Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to access iphone notes, calendar in IOS?

Tags:

iphone

ios4

I want to access notes and calendar using native iphone app. I want to know is it possible in new iphone os? Is there any public pi for that?

like image 873
rat Avatar asked Oct 15 '10 11:10

rat


People also ask

Can you link Apple notes to Calendar?

In the Calendar app on your Mac, double-click or force click an event. Click Add Notes, URL, or Attachments. Do any of the following: Add notes: Click Add Notes, then enter your note.

How do I get notes on my iPhone Calendar?

How to view links and notes in calendar events on iPhone and iPad. Launch the Calendar app on your iPhone or iPad. Tap on the event that has a URL or notes attached. The URL will load automatically in Safari or the appropriate app.

Can you add a Calendar to notes?

Procedure. In the left panel of your calendar, click Add a Calendar. Under Add, select the type of calendar you would like to add. Note: For Notes user's calendar, the user must have given you access to their calendar.


2 Answers

There is the Event Kit API which is documented in The Event Kit Programming Guide.

As far as I know you cannot access Notes.

The Event Kit and Event Kit UI frameworks together allow iOS applications to access event information from a user’s Calendar database. You can fetch events based on a date range or a unique identifier, receive notifications when event records change, and allow users to create and edit events for any of their calendars. Changes made to events in a user’s Calendar database with Event Kit are automatically synced with the appropriate calendar (CalDAV, Exchange, and so on). This document describes Event Kit concepts and common programming tasks.

like image 158
willcodejavaforfood Avatar answered Sep 30 '22 06:09

willcodejavaforfood


Notes are now synchronized to the main IMAP server mail account. So if you can access that somehow then you could access the notes, potentially. However I think you'd probably have to link in your own IMAP client code, and ask the user for their login credentials.

like image 32
Nimrod Avatar answered Sep 30 '22 05:09

Nimrod