Issue explained through code.
let u = "tel://*111*11111111111#" //Works perfectly on iOS11 and later
let u = "tel://*111#11111111111#" //Doesn't work, Can't create URL
let app = UIApplication.shared
if let url = URL(string:u) {
if app.canOpenURL(url) {
app.open(url, options: [:], completionHandler: { (finished) in
})
}
}
** If I encode the string then canOpenURL()
fails !