菜鸟教程小白 发表于 2022-12-12 17:54:28

ios - 如何从 iOS 8 开始获取浏览器 UserAgent 字符串?


                                            <p><p>除了使用以下方法之外,还有其他方法可以获取 iOS 浏览器 UserAgent 字符串吗?请帮忙。</p>

<pre><code>WKWebView *webView = [ initWithFrame:self.view.bounds];
;

[webView evaluateJavaScript:@&#34;navigator.userAgent&#34; completionHandler:^(id __nullable userAgent, NSError * __nullable error) {
      NSLog(@&#34;%@&#34;, userAgent);
}];
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个:</p>

<pre><code>UIWebView* webView = [ initWithFrame:CGRectZero];
NSString *userAgent = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从 iOS 8 开始获取浏览器 UserAgent 字符串?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34341485/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34341485/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从 iOS 8 开始获取浏览器 UserAgent 字符串?