Load desktop version WKWebView iOS 9(加载桌面版 WKWebView iOS 9)
问题描述
直到最近
let url = NSURL (string:http://asite.com)
let request = NSMutableURLRequest(URL: url!)
//iOS loads the mobile version of asite.com which does not have the required DOM so we force the desktop version by setting new value forHTTPHeadrField
let newUserAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.6 Safari/537.11"
request.setValue(newUserAgent, forHTTPHeaderField: "User_Agent")
let config = WKWebViewConfiguration()
//even though we dont need to see it the webpage needs to appear but we set its frame to CGRectZero so its hidden from user
let ghostWebView : WKWebView = WKWebView(frame:CGRectZero, configuration: config)
ghostWebView.loadRequest(request)
这将强制使用该网站的桌面版本.但是它刚刚停止工作.不知道确切的时间,但最近.
This would force the desktop version of the site. However it has just stopped working. Not sure exactly when but very recently.
有什么想法吗?
google 搜索结果也显示了一些用途
Also google results show some use
用户代理"
对于 HTTPHeaderField 等
for the HTTPHeaderField and others
用户代理"
两者有什么区别?
更新:我通过将用户代理字符串更改为
Update: I solved the issue by changing the User Agent string to
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36(KHTML,如 Gecko)Chrome/41.0.2227.1 Safari/537.36"
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36"
我是从
http://www.useragentstring.com
所以我的新问题是这些用户代理字符串多久更改一次,有没有办法让我的应用自动更新到最新的?
So my new question is how often do these user agent strings change and is there a way for my app to auto update to the newest one?
推荐答案
帮助任何在这里找到答案的人.解决方案是
To help any who find themselves here for an answer. The solution was
UserDefaults.standard.register(defaults: ["UserAgent" : "Chrome Safari"])
这篇关于加载桌面版 WKWebView iOS 9的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:加载桌面版 WKWebView iOS 9


基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01