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
  • 307,833
  • 40
  • 508
  • 550
Okan Kocyigit
  • 12,913
  • 18
  • 65
  • 126

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
  • 2,893
  • 1
  • 22
  • 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