After iOS 13 update the url scheme for reminders app x-apple-reminder://
does not work anymore.
NSString *url = @"x-apple-reminder://";
NSURL *URL = [NSURL URLWithString:url];
[[UIApplication sharedApplication] openURL:URL];
How can I find the new url scheme? I searched on the web,but I could not find anything.
The new url for the reminders app in iOS13
is x-apple-reminderkit://
.