Is there a way to open the Apple Reminders app programmatically?
I have tried in Swift 5+ and iOS 13, you need to use the following url scheme.(Earlier x-apple-reminder:// was working but now it isn't)
x-apple-reminderkit://
if let url = URL(string: "x-apple-reminderkit://"), UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:]) { (isDone) in
}
}
It will open the iOS Reminder App from your application.
Hope it may be helpful to other.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With