OSX 10.10 WKWebView设置UserAgent(Swift)

时间:2015-01-23 12:13:32

标签: macos swift user-agent wkwebview

我尝试在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)

谢谢你的帮助。

1 个答案:

答案 0 :(得分:4)

您必须在ObjC桥接标题中公开WKWebView的一些私有方法,并调用它们来更改UA。

从我的mini-browser应用中修改了摘要:

桥接-header.h

// 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

macpin.swift

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))