In my iPhone app, I\'m presenting a modal view controller from a home screen with a UIWebView that displays an \"inline\" embedded YouTube video using this:
The answer re: "I solved this setting my Modal View as my rootViewController after presenting it." is the correct approach. If you call youtube from a modally presented view controller it will return to the original controller which presented the modal one. If you then try to re-present the correct controller using flags it gets really messy and there can be timing issues. Izaakcito's method works properly.