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了 按你的需求来搞就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//追加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了 按你的需求来搞就行了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询