본문 바로가기
모바일

Custom android,ios webview UserAgnet변경

by 죠부니 2019. 8. 8.
반응형

웹뷰상의 userAgent값을 가져와서 내가원하는 값을 추가하여 변조한다.

 

안드로이드

public WebView contentWebView; //웹뷰

WebSettings webSettings = contentWebView.getSettings();
webSettings.setUserAgentString(webSettings.getUserAgentString()+" android");


아이폰(Swift)

webView.evaluateJavaScript("navigator.userAgent", completionHandler: {(result,error) in
    if let result = result as? String {
        self.webView.customUserAgent = result + " ios"
    }
})

 

 

반응형

'모바일' 카테고리의 다른 글

플러터 개발환경 설정  (0) 2023.10.25
아이튠즈 백업폴더 변경  (0) 2020.07.08