I have an app with a UIButton, I wish, when I click the button that the iPhone launches Youtube app with directly my video ready to start to play, I've tried this code:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=xxx"]];
But it launches Safari in the video page. I'm trying my app on actual device.
Thanks