NSString *phoneNumberString = @"tel:1234567891";
NSURL *phoneURL = [NSURL URLWithString:phoneNumberString];
[[WKExtension sharedExtension]openSystemURL:phoneURL];
This is the code I'm using to try to generate a phone call on the watch. I am unable to debug when using the device and It's not possible to generate a call on the simulator, but I do hit the breakpoint on the simulator. I don't see what is wrong. Can anyone see a problem or help? Thanks.