IOS webView修改浏览器标识是什么 类似安卓UserAgentString
2个回答
2017-05-03
展开全部
//追加webView的userAgent参数
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString *oldAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
NSLog(@"old agent :%@", oldAgent);
//add my info to the new agent
NSString *newAgent = [oldAgent stringByAppendingString:@"yourUserAAgentString"];
NSLog(@"new agent :%@", newAgent);
NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent",nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
我的是在APPDelegate的DidLoad方法里写的 这样的话项目里所有的webview都有userAgent了 按你的需求来搞就行了
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString *oldAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
NSLog(@"old agent :%@", oldAgent);
//add my info to the new agent
NSString *newAgent = [oldAgent stringByAppendingString:@"yourUserAAgentString"];
NSLog(@"new agent :%@", newAgent);
NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent",nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
我的是在APPDelegate的DidLoad方法里写的 这样的话项目里所有的webview都有userAgent了 按你的需求来搞就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家可靠的代理服务提供商,提供原生IP(住宅原生IP)和高匿名代理服务。以下是关于StormProxies的原生IP服务的一些信息:1. 住宅原生IP:StormProxies提供的住宅原生IP是指从真实的家庭或企...
点击进入详情页
本回答由Storm代理提供
展开全部
//追加webView的userAgent参数
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString *oldAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
NSLog(@"old agent :%@", oldAgent);
//add my info to the new agent
NSString *newAgent = [oldAgent stringByAppendingString:@"yourUserAAgentString"];
NSLog(@"new agent :%@", newAgent);
NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent",nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
我的是在APPDelegate的DidLoad方法里写的 这样的话项目里所有的webview都有userAgent了 按你的需求来搞就行了
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString *oldAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
NSLog(@"old agent :%@", oldAgent);
//add my info to the new agent
NSString *newAgent = [oldAgent stringByAppendingString:@"yourUserAAgentString"];
NSLog(@"new agent :%@", newAgent);
NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent",nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
我的是在APPDelegate的DidLoad方法里写的 这样的话项目里所有的webview都有userAgent了 按你的需求来搞就行了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询