fredpi
fredpi

Reputation: 8942

Launch Apple Watch messages app from within another watch app

I want to launch the messages app on the Apple Watch from my own WatchKit app. I've seen this post here, but it only tells me to forward the app launch to the iPhone.

In the delegate method of the iPhone app, I can now perform a URL action. What's the URL I have to use in order to launch the messages app on the watch?

Upvotes: 1

Views: 288

Answers (1)

bgilham
bgilham

Reputation: 5939

This isn't possible in watchOS 1.

In watchOS 2, you'll be able to call openSystemURL on the WKExtension object and use the sms scheme. Documentation is available here.

Upvotes: 2

Related Questions