I’m doing a calendar for iPad where until now
I have the calendar view, however, now I need to create an event inside it.
I Base in this example with YFCalendar http://www.yellowfield.co.uk/blog/?p=28
Now I need to add a new event which can be added by the time the current day
however, I want to see the summary of the event in a small window similar to the default calendar.
Example_Image:
http://media.wiley.com/Lux/45/271245.image1.jpg
I don’t know what kind of control I need to achieve this result.
I do not use default calendar
some recommendations?
preferably something with open source to analyze, in any way, any answer is welcome
See the event kit programming guide located here:
http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/EventKitProgGuide/Introduction/Introduction.html
Here’s apple sample code: https://developer.apple.com/library/ios/samplecode/SimpleEKDemo/Introduction/Intro.html
The code for adding an event uses the EKEventEditViewController:
After adding, you can fetch events using code from that tutorial which retrieves events with a predicate (in this case date):