Hi all Im looking to play a movie on an iOS device and found MPMoviePlayerController which works very easily. So i have my movie playing but i dont want any of the video controls to be visible/active. i was looking through the settings and found things like
[moviePlayerController setMovieControlMode:MPMovieControlModeHidden];
[moviePlayerController setMovieControlMode:MPMovieControlStyleNone];
and while they do remove the on screen control while the movie is playing they are still visible on initial start of movie. basically just want to play my movie at start of app without any extra overlays of controls at all ever. any ideas how to do this? any help would be appreciated
g