I tried to load UIWebView
in swift so far am able to call and load webservices without any problem , both webview and json services in simulator.
But when I tried load it in device all the other webservices are working except UIWebView
.
let url = "http://192.168.1.233/PhpProject1/MoreDetails.php?id=1234"
UIWebView.loadRequest(webView)(NSURLRequest(URL: NSURL(string: url)!))
I checked the log but nothing happens after calling the UIWebView
in the device.
The problem is that only webview is not loading in device, I am able to call all other webservices, and everything is working fine in emulator.