Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 iOS (iPad) 编写浏览器,我想知道如何进行用户设置,使浏览器看起来像是 Safari Desktop、Firefox 等(我是初学者)谢谢!
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"custom user agent", @"UserAgent", nil]; [[NSUserDefaults standardUserDefaults] registerDefaults:dictionary]; [dictionary release];
在创建 Web 视图之前可能会起作用。