iOS 简单使用UserAgent

使用场景:

有个项目需求,要区分打开H5是在本地APP还是在手机浏览器,前端伙伴说需要配合修改默认的UserAgent,以便区分。

一、如何获取UserAgent

UIWebView方式:

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];

NSString *userAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

DLog(@"userAgent :%@", userAgent);

WKWebView方式:

// 注意这个方法是异步的

WKWebView *wkWebView = [[WKWebView alloc] initWithFrame:CGRectZero];

[wkWebView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id result, NSError *error) {

DLog(@"userAgent :%@", result);

}];

默认UserAgent输出:

Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H143

微信 iOS版的 :UserAgent

mozilla/5.0 (iphone; cpu iphone os 5_1_1 like mac os x) applewebkit/534.46 (khtml, like gecko) mobile/9b206 micromessenger/5.0

其中micromessenger就是自定义的

二、如何修改UserAgent

方案一,修改全局UserAgent值(这里是在原有基础上拼接自定义的字符串)

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];

NSString *userAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

NSString *newUserAgent = [userAgent stringByAppendingString:@" native_iOS"];//自定义需要拼接的字符串

NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:newUserAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];

}

方案二,自定义UserAgent值

WKWebView *wkWebView = [[WKWebView alloc] initWithFrame:self.view.bounds];

[self.view addSubview: wkWebView];

NSString *customUserAgent = @"native_iOS";

[[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent":customUserAgent}];

NSURL *url = [NSURL URLWithString:self.strUrl];

NSURLRequest *request = [NSURLRequest requestWithURL:url

cachePolicy:NSURLRequestUseProtocolCachePolicy

timeoutInterval:10.f];

[self.wkWebView loadRequest:request];

方案三

self.wkWebView = [[WKWebView alloc] initWithFrame:self.view.bounds];

__weak typeof(self) weakSelf = self;

[self.wkWebView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id result, NSError *error) {

__strong typeof(weakSelf) strongSelf = weakSelf;

NSString *userAgent = result;

NSString *newUserAgent = [userAgent stringByAppendingString:@" native_iOS"];

NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:newUserAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];

// needs retain because `evaluateJavaScript:` is asynchronous

strongSelf.wkWebView = [[WKWebView alloc] initWithFrame:strongSelf.view.bounds];

}];

[self.wkWebView loadRequest:request];

实例:

if(originUserAgent==nil) {

[self.webView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id result, NSError *error) {

originUserAgent = result;

NSString *currentVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];

NSString *ua=[originUserAgent stringByAppendingFormat:@" xxxxx/%@",currentVersion];

[[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent":ua}];

//必须有此句代码,否则第一次加载不会修改UserAgent

[self.webView setCustomUserAgent:ua];

}];

}

三、问题& 思考

1.有时整个项目的UIWebView比较多,所以新建一个UIWebView的基类,然后在基类的初始化方法- (instancetype)initWithFrame:(CGRect)frame里添加以下代码:

NSString * oldAgent = [self stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

NSString * newAgent = oldAgent;

if (![oldAgent hasSuffix:@"panda"])

{

newAgent = [oldAgent stringByAppendingString:@"/panda"];

}

NSLog(@"new agent :%@", newAgent);

NSDictionary * dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];

[[NSUserDefaults standardUserDefaults] synchronize];

调试的发现,当手机或者模拟器连接Mac调试的时候,H5页面都能获得修改后的UIWebView的UserAgent,但是一旦断开调试模式,真机运行和模拟器运行的时候H5获得的UserAgent是UIWebView默认的UserAgent,而不是修改后的UserAgent。

原因是:webView会替换成默认的UserAgent。

若遇见这种情况可以换一种解决方式,直接在AppDelegate里面- (BOOL)application:(UIApplication)application didFinishLaunchingWithOptions:(NSDictionary)launchOptions修改默认的UserAgent,这种方式一劳永逸。

UIWebView * tempWebView = [[UIWebView alloc] initWithFrame:CGRectZero];

NSString * oldAgent = [tempWebView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

NSString * newAgent = oldAgent;

if (![oldAgent hasSuffix:@"panda"])

{

newAgent = [oldAgent stringByAppendingString:@"/panda"];

}

NSLog(@"new agent :%@", newAgent);

NSDictionary * dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:newAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];

[[NSUserDefaults standardUserDefaults] synchronize];

解决了以上问题,但是至于为什么在每个UIWebView初始化的时候修改UserAgent,H5获取不到修改后的UserAgent,真的不太清楚,还请了解的大神指点一下。

2.关于WKWebView 修改UserAgent

// 要区分打开H5是在本地APP还是在手机浏览器,前端伙伴说需要配合修改默认的 UserAgent,以便区分。

//    修改全局UserAgent值(这里是在原有基础上拼接自定义的字符串)

[_mainWebView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id result, NSError *error) {

NSString *userAgent = result;

NSString *newUserAgent = [userAgent stringByAppendingString:@" ios/jkbs/1.2.3"];

NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:newUserAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];

[[NSUserDefaults standardUserDefaults] synchronize];

// 在网上找到的没有下面这句话,结果只是更改了本地的UserAgent,没修改网页的,导致一直有问题,好低级的错误,这个函数是9.0之后才出现的,在这之前,把这段代码放在WKWebView的alloc之前才会有效

[_mainWebView setCustomUserAgent:newUserAgent];

//    判断网址类型

if ([self.url YgContainsString:@"indexlocal"]) {

//        本地html

[_mainWebView YgLoadLocationUrl:self.url];

}else{

[_mainWebView YgLoadNoneParaUrl:self.url];

}

}];

3.在测试的时候,发现方案二、三第一次运行的时候,在iOS9以下还是显示默认的值,第二次才会显示自定义的值,WKWebView原因如上结果只是更改了本地的UserAgent,没修改网页的,导致一直有问题;UIWebView的如有朋友解决麻烦告诉一下,谢谢。

参考链接:iOS 修改默认 UserAgent

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容

  • 原文 在这里总结一些iOS开发中的小技巧,能大大方便我们的开发,持续更新。 1.UITableView的Group...
    无沣阅读 770评论 0 2
  • 1、改变 UITextField 占位文字 颜色和去掉底部白框 [_userName setValue:[UICo...
    i_MT阅读 1,033评论 0 2
  • 在这里总结一些iOS开发中的小技巧,能大大方便我们的开发,持续更新。 UITableView的Group样式下顶部...
    UI爱好者阅读 519评论 0 0
  • iOS 開発の結構 画面 UI UIWebview [[UIApplication sharedApplicati...
    RencaiXiong阅读 580评论 0 0
  • 直接上代码: 第一种方法: self.wkWebView =[[WKWebView alloc] initWith...
    DreamMakerSky阅读 4,503评论 0 1