WKWebView 加载网页的时候出现下面的错误
Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service
Set value @"false" for cookie property @"HttpOnly",
NSHTTPCookie *cookieWID = [NSHTTPCookie cookieWithProperties:[NSDictionary dictionaryWithObjectsAndKeys:
@"wid" ,NSHTTPCookieName,
WID,NSHTTPCookieValue,
@"www.google.com",NSHTTPCookieDomain,
@"",NSHTTPCookiePath,
@"false",@"HttpOnly",
nil]];
swift
let cookieWID = HTTPCookie(properties: [
HTTPCookiePropertyKey(rawValue: "HttpOnly"):"false"]
)