I have something like that:
I want to call a number when I push on the right. I try with tel//:
but it doesn't work. Is this possible?
I have something like that:
I want to call a number when I push on the right. I try with tel//:
but it doesn't work. Is this possible?
It appears as though your syntax tel//:
is incorrect. Instead, try using tel://
like the following:
UIApplication.sharedApplication().openURL(NSURL(string: "tel://\(phoneNumber)")!)