Is there an iPhone URL shortcut for calendar?

后端 未结 6 2100
小蘑菇
小蘑菇 2020-12-11 08:03

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.

6条回答
  •  遥遥无期
    2020-12-11 08:51

    That code launch the Calendar app:

    NSString* launchUrl = @"calshow://";
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]];
    

提交回复
热议问题