I'm trying to make a phonecall from the app, nevertheless the number have an * ... So it doesn't work. If I delete the *, it works just well, but not as intented.
let phoneNumber = "tel://*000000"
if let url = NSURL(string: phoneNumber) {
UIApplication.sharedApplication().openURL(url)
}
Any idea? Thanks in advance!