同じ Youtube URL で Safari と UIWebView に視覚的な違いがあるのはなぜですか?
// UIWebView
NSURL *url = [NSURL URLWithString:@"http://www.youtube.com/embed/NhPqn7MuDy0"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
// Safari
NSURL *url = [NSURL URLWithString:@"http://www.youtube.com/embed/NhPqn7MuDy0"];
[[UIApplication sharedApplication] openURL:url];