我找到的唯一方法是:
NSDictionary*dictionnary = [[NSDictionary alloc] initWithObjectsAndKeys:@"my user agent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];
[[NSUserDefaults standardUserDefaults] synchronize];
它工作得很好。但唯一的问题是我们不能在程序的后面修改 User-Agent。有没有人可以解决这个问题或有其他方法在 UIWebView 中设置用户代理?我要做的是在项目中自由设置UIWebView中的User-Agent。