Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an iPhone URL shortcut for calendar?

I can launch Google Maps, Mail, Safari and others... but is there the same functionality for Calendar??

EDIT: I only want to add an event into the calendar.

Thanks guys!

Nick.

like image 576
Nick Cartwright Avatar asked Dec 01 '22 11:12

Nick Cartwright


1 Answers

That code launch the Calendar app:

NSString* launchUrl = @"calshow://";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]];
like image 107
Fedor Cherepanov Avatar answered Dec 06 '22 00:12

Fedor Cherepanov