iOS客户端添加UserAgent

最近公司的项目需要用到WebView,WebView需要修改网页的布局(比如去掉某些不需要的header),需要添加UserAgent。上代码:

//一般写在appdelegate方法里
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 
    //regist the new agent
    NSDictionary *dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:UA, @"UserAgent", nil];    
    [[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
    return YES;
}

具体原理我也不是很清楚,如果有知道的请告诉我,谢谢!

  • 最后推荐一个学MarkDown的博客,博客地址

你可能感兴趣的:(iOS客户端添加UserAgent)