在谷歌浏览器上有这个选项"计算机网站"。许多网站都认识到您正在使用手机,并且会将您重定向到另一个手机网站。
我只是不要让他们认识到我正在使用来自IOS的UIWebview。
答案 0 :(得分:0)
我想你可以通过changing the user agent获得此效果。
这应该适用于大多数网站,除非他们非常认真地试图检测移动设备(通过检查窗口大小等)。
答案 1 :(得分:0)
我解决了这个问题:
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"Your user agent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];