I want to call HTTPS url (self-signed certificate) in my iOS App. it works on the mobile browser but not in the App Webview.
Is there a solution for Xcode 7 and Swift 2.2?
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let url = NSURL(string: "https://xxx.xxx.x.xxx:xxxx")
let request = NSURLRequest(URL: url!)
Webview.loadRequest(request)
}