i want to make a phone call from Apple Watch too. I imported WatchKit. Then i put this code in my method:
if let telURL=NSURL(string:"tel:5553478") {
let wkExtension=WKExtension.sharedExtension()
wkExtension.openSystemURL(telURL)
}
It shows me an error: Use of unresolved identifier 'WKExtension' in line 2. I don't know what I am doing wrong :/