Reputation: 769
I'd like to open the iphone calendar app programmatically from within my app. According to this post: How to open the iPhone calendar from within my app? it isn't possible (May 22 2010!). Maybe the ios sdk 4 or ios sdk 5 support such a feature?
Upvotes: 8
Views: 7163
Reputation: 1443
use this line to open ios calendar :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow://"]];
Upvotes: 3