使用x-apple-reminder://在iOS中启动Reminders应用程序

时间:2013-10-27 18:28:12

标签: ios iphone objective-c cocoa reminders

似乎很简单,但我无法完成这项工作..我想从我的原生应用程序启动本机提醒应用程序。

根据我的阅读,我需要使用x-apple-reminder://网址计划,但它不会启动提醒应用。

这是我的代码:

NSString* reminderUrl = @"x-apple-reminder://";
NSURL *url = [NSURL URLWithString:reminderUrl];
BOOL ok = [[UIApplication sharedApplication] openURL:url];

ok总是NO,没有任何反应。

我也试过传递Reminder的id(我的应用程序创建了它),但这不起作用。 (如x-apple-reminder://REMINDER_GUID

我怀疑我的问题出在openURL电话上..还有其他选择吗?

1 个答案:

答案 0 :(得分:2)