Reputation: 171
I want to be able to implement a button in my app, that quits my app, and takes the user to the iPhone's calendar. I'm not interested in sending the user to a specific event. Just opening up the calendar would do the trick. Any suggestions?
Upvotes: 4
Views: 6414
Reputation: 5545
Hey might be a late answer but you can do it now like this
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow://"]];
Upvotes: 12
Reputation: 3899
Take a look to the Event Kit. It allows working with calendar http://developer.apple.com/iphone/library/documentation/DataManagement/Conceptual/EventKitProgGuide/Introduction/Introduction.html
Upvotes: 1