WKWebView Cookies
问题 I'm using the below mentioned approach to set cookies in a WKWebview : Can I set the cookies to be used by a WKWebView? But the cookies that I have set are being duplicated in the AJAX calls. I mean they are being repeated twice. Here is the code snippet that I used: NSString *strURL = DASHBOARDURL; NSURL *url = [NSURL URLWithString:strURL]; NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; [request setURL:url]; NSMutableString *script = [[NSMutableString alloc] init];