İçeriğe geç

Xamarin Forms IOS da Webview Çalışmıyorsa

info.pls dosyasına aşağıdaki satırları eklememiz gerekiyor..!

    <key>NSExceptionDomains</key>
    <dict>
        <key>mustafaozkaya.com.tr</key>
        <dict>
            <!--Include to allow subdomains-->
            <key>NSIncludesSubdomains</key>
            <true/>
            <!--Include to allow HTTP requests-->
            <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
            <true/>
            <!--Include to specify minimum TLS version-->
            <key>NSTemporaryExceptionMinimumTLSVersion</key>
            <string>TLSv1.1</string>
        </dict>
    </dict>

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>
var browser = new WebView();
browser.Source = "http://www.mustafaozkaya.com.tr";
Content = browser;

yada

<ContentPage.Content>
    <StackLayout>
        <WebView x:Name="webview" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"/>
    </StackLayout>
</ContentPage.Content>
Kategori:IOSXamarin

İlk Yorumu Siz Yapın

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir