如何在iOS中制作“识别浏览器”

时间:2011-08-12 14:51:23

标签: objective-c ios cocoa-touch browser identify

我正在为iOS(iPad)编写一个浏览器,我想知道如何制作一个用户设置,使浏览器看起来好像是Safari桌面,Firefox等(我是初学者)谢谢!

1 个答案:

答案 0 :(得分:0)

NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"custom user agent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
[dictionary release];
在创建Web视图之前,

可能有效。