iOS 解决UIWebView加载网页的时候有广告一闪而过的问题
2018-10-26 本文已影响0人
三千沉浮
最近做了个商城项目,商品详情使用webView加载的,后来发现加载的时候会有广告一闪而过,往上查询多种方法无果,后来终于找到一种方法,记录一下。
-(void)webViewDidStartLoad:(UIWebView *)webView{
NSURL * hostUrl = [NSURL URLWithString:@"你加载的URL字符串"];
NSArray *headeringCookie = [NSHTTPCookie cookiesWithResponseHeaderFields:@{@"Set-Cookie":@"Chdover=1"} forURL:hostUrl];
[[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookies:headeringCookie forURL:hostUrl mainDocumentURL:nil];
}