WebView is now appearing on any of my application after I upgraded to the latest version of Xamarin for iOS 9.
I tried to isolate the problem in separate application.
public App()
{
MainPage = new ContentPage
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.FillAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
Children = {
new WebView() {Source = new UrlWebViewSource() {Url = "http://www.google.com"}}
}
}
};
}
Any help would be great!