I am trying to dial a number in my watchOS 2 application using the openSystemURL
with a tel:
URL method:
let extent = WKExtension.sharedExtension()
extent.openSystemURL(NSURL(string: "tel:1-408-555-1212")!)
This does not do anything, however when I use the sms:
URL it works just as it should if I were to send an sms message.
It explicitly says in the documentation that opening tel:
URLS is very well possible. What am I doing wrong?