In my app, I open up a youtube video like such:
NSURL *youtubeURL = [NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:youtubeURL];
When I do this and I have the youtube app installed, it will open up youtube, but not load the video. It will just go to the youtube homepage. But if I do it again, it will load video.
I have trouble reproducing the problem, but has anyone seen this? It usually happens after not using the youtube app for a while.