Xamarin Webview无法正常工作

时间:2017-04-03 07:06:07

标签: xamarin.forms

我正在构建xamarin.forms应用程序,我打算在Web视图(iOS)中加载asp.net mvc应用程序。这是我的代码。

    WebView webview = new WebView();
    webview.Source = new UrlWebViewSource
        {
            Url = "https://hrworksplus.com/test/test.html"
        };
        MainPage = new ContentPage
        {
            Content = webview
        };

当我提供我的应用程序的网址时,模拟器不会加载任何东西,但如果我给google.com链接,它会立即完美地运行。不知道会出现什么问题,我的Web应用程序正在浏览器中工作。

此致 TA

1 个答案:

答案 0 :(得分:1)

文件 info.plist 中的更改:

<key>NSAppTransportSecurity</key> 
<dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>

解决了我在iOS设备上的xamarin.forms Webview中播放html5视频的问题。 就像Gerald Versluis所说的那样,它在调试控制台中出现了一条关于不安全连接的错误消息,而视频却没有播放。