我尝试在Mac App中为WKWebView设置自定义UserAgent。不幸的是,指定的Custom String永远不会被设置。使用iOS SDK并不是什么大不了的事情
NSUserDefaults.standardUserDefaults().registerDefaults(["UserAgent" : "Custom Agent"])
但是使用Mac SDK它不起作用。我也试过
let url = NSURL(string: startURL)
let req = NSMutableURLRequest(URL: url!)
req.setValue("Custom Agent/1.0", forHTTPHeaderField: "User-Agent")
webView!.loadRequest(req)
谢谢你的帮助。
答案 0 :(得分:4)
您必须在ObjC桥接标题中公开WKWebView的一些私有方法,并调用它们来更改UA。
从我的mini-browser应用中修改了摘要:
// https://github.com/WebKit/webkit/blob/master/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewPrivate.h
@import WebKit;
@interface WKWebView (Privates)
@property (copy, setter=_setCustomUserAgent:) NSString *_customUserAgent;
@property (copy, setter=_setApplicationNameForUserAgent:) NSString *_applicationNameForUserAgent;
@property (nonatomic, readonly) NSString *_userAgent;
@end
if let agent = withAgent? {
webview._customUserAgent = agent // specify full UA
} else {
webview._applicationNameForUserAgent = "Version/8.0.2 Safari/600.2.5"
// appended to UA, mimicing Safari
}
webview.loadRequest(NSURLRequest(URL: url))