here is the bit of code giving me the issue:
func loadUrl(_ obj:AnyObject?){
let urlObj = obj as! NSDictionary
let urlPath = urlObj["aps"]!["alert"] as! String
let requestUrl = URL(string: urlPath)
let request = URLRequest(url: requestUrl!)
webView.loadRequest(request)
Tried many of the things posted but none work in my case, any heal is greatly appreciated!