当我从我的服务器(使用模拟器)请求文件时,我的 UA 被列为
"AppleCoreMedia/1.0.0.10B141 (iPad Simulator; U; CPU OS 6_1 like Mac OS X; en_us)"
有什么方法可以以编程方式将其更改为我选择的字符串?
我知道如何使用 NSUserDefaults
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
不过,这似乎不适用于 MPMoviePlayer 请求