Does iOS Calendar support a URL scheme?

前端 未结 2 912
既然无缘
既然无缘 2020-12-06 07:44

Is there any URL scheme that will launch the Calendar app on iOS?

I use Prowl to push Growl notifications to my phone. They just added support to launch an app with

相关标签:
2条回答
  • 2020-12-06 07:58

    Try this. it works for me. Here is the link

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"calshow://"]];
    
    0 讨论(0)
  • 2020-12-06 08:15

    Update: you can now use the calshow:// URL to open the Calendar app on iOS.


    See this question: Apple does not list this application on its Apple URL Scheme Reference.

    0 讨论(0)
提交回复
热议问题