x4h1d
x4h1d

Reputation: 6092

URL scheme to open Watch app for pairing Apple Watch

Is there any URL scheme, so I can open "Watch" app on button click, to pair Apple watch ? like:

UIApplication.sharedApplication().openURL(NSURL(string : /* Watch URL Scheme? */)

Or is there any other way to open the "Watch" app on a button click?

Upvotes: 2

Views: 4272

Answers (2)

Amit
Amit

Reputation: 2735

There are multiple schemes listed in the below link.

https://medium.com/@contact.jmeyers/complete-list-of-ios-url-schemes-for-apple-apps-and-services-always-updated-800c64f450f

'itms-watchs://bridge:root=GENERAL_LINK' worked for me

Upvotes: 0

codeinthesky
codeinthesky

Reputation: 699

The watch URL scheme is itms-watch://

Upvotes: 2

Related Questions