关于iOS获取User-Agent的方法

2016-10-20  本文已影响0人  amoyb1ooooooo

- (void)viewDidLoad {

[superviewDidLoad];

UIButton*btn = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];

btn.frame=CGRectMake(100, 100, 80, 40);

[btnsetTitle:@"连接数据"forState:UIControlStateNormal];

[btnaddTarget:selfaction:@selector(pressBtn)forControlEvents:UIControlEventTouchUpInside];

[self.viewaddSubview:btn];

// _data = [[NSMutableData alloc]init];

// Do any additional setup after loading the view, typically from a nib.

}

-(void)pressBtn{

/**获取系统的UA */

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

NSString*userAgentString = [webViewstringByEvaluatingJavaScriptFromString:

@"navigator.userAgent"];

NSLog(@"useragent = %@",userAgentString);

}

此为获得当前模拟器或手机的UA的方法,写在viewDidLoad中便可

上一篇下一篇

猜你喜欢

热点阅读