UIWebView で、User-Agent を変える

UIWebView で、User-Agent を変えるには、UIWebView  alloc 実行前に、
以下のように実行する。


NSDictionary *dictionary = [ [ NSDictionary alloc ] initWithObjectsAndKeys:@"xxxxxxx", @"UserAgent", nil ];
[ [ NSUserDefaults standardUserDefaults ] registerDefaults:dictionary ];
[ dictionary release ];