Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I open Apple Reminders app programmatically?

Tags:

ios

Is there a way to open the Apple Reminders app programmatically?

like image 531
Don Sandbekkhaug Avatar asked Aug 05 '26 10:08

Don Sandbekkhaug


1 Answers

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.

like image 70
Mahendra Avatar answered Aug 08 '26 00:08

Mahendra



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!