我正在为iOS(iPad)编写一个浏览器,我想知道如何制作一个用户设置,使浏览器看起来好像是Safari桌面,Firefox等(我是初学者)谢谢!
答案 0 :(得分:0)
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"custom user agent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
[dictionary release];
在创建Web视图之前,可能有效。