除了使用以下方法之外,還有其他方法可以獲得iOS瀏覽器UserAgent字符串嗎?請幫忙。如何從iOS 8開始獲取瀏覽器UserAgent字符串?
WKWebView *webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
[webView loadHTMLString:@"<html></html>" baseURL:nil];
[webView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id __nullable userAgent, NSError * __nullable error) {
NSLog(@"%@", userAgent);
}];
你得到的userAgent的方法是我們想出來的,@ arango_86的最佳途徑。我們絕對不會嘗試將UIWebView用戶代理與WKWebView用戶代理進行匹配。 –