Question

Seems simple but I can't make this work.. I want to launch the native Reminders app from my native app.

From what I've read I need to use x-apple-reminder:// URL scheme but it does not launch the Reminders app.

Here's my code:

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

ok is always NO and nothing happens.

I also tried passing in the Reminder's id (my app created it), but that didn't work. (as in x-apple-reminder://REMINDER_GUID)

I suspect that my problem is with the openURL call.. is there some other option?

Was it helpful?

Solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top