0
string url = "https://www.google.com"
webView.LoadRequest(new NSUrlRequest(new NSUrl(url)));

I've tried in both xcode and xamarin, this code still working for IOS9 device and IOS10 simulator. But when I try on a real ios10 device getting a blanks screen.

Are there any changes about security rules in IOS 10?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Okan Kocyigit
  • 13,203
  • 18
  • 70
  • 129

1 Answers1

1

implement didFailLoadWithError from the UIWebView delegate and see if that helps you anything. See the UIWebView documentation for further information.

der_michael
  • 3,151
  • 1
  • 24
  • 43
  • thanks for helpful answer, I solved my problem, it's beacuse of tls version of server. http://stackoverflow.com/questions/32967264/ios9-and-uiwebview-issues – Okan Kocyigit Oct 07 '16 at 18:48