I have an app that make a calendar event on iOS, the event is added correctly, but I want to display the calendar app with the event as the user added the event; and I have no idea to how i can call to the calendar app.
Asked
Active
Viewed 694 times
1
-
you cannot show the calendar app in your project but u can use other framework for showing calendar in your project with all the events present in your calendar. – Dheeraj Singh Feb 19 '15 at 04:35
2 Answers
0
You may need the EventKit framework. See this question, especially the answer pertaining to IOS 6 that isn't checked. That can help you get started.

Community
- 1
- 1

MScottWaller
- 3,321
- 2
- 24
- 47
-
Thanks, but I have already add the events to calendar, But i need to display the event in the calendar app. calling it from a button or something. – Max Clow Reed Feb 19 '15 at 16:39
0
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow://"]];
When you call this action, It will open the calendar, sadly, i can only open the calendar in today or in 31/12/2000, but it works!.

Max Clow Reed
- 25
- 6