In an iphone app, I create an MPMoviePlayerController and instruct it to start playing video in full screen mode (I don't think there is any option for anything but F/S mode on iPhone like you can on ipad).
Once the full screen player comes up, the entire screen is black and there are no controls visible (set to MPMovieControlStyleDefault) for several seconds sometimes.
After a second or three, the controls appear and the first frame of the video, then the video begins to buffer and autoplays correctly.
- How can I display a UIActivityIndicator on top of the full screen player? I am displaying the sharedApplication network activity indicator, but I want to show a full size indicator with a "Loading..." label.
I've tried adding it as a subview of the movie player's view, the movie player's background view, as a subview of the movieplayer view's superview (I didn't expect that to work of course). I think the key here is that the F/S movie player view is not the same as the movieplayer's view when not in F/S mode. Yes? Is there a way to access the full screen view?
2.Should the controls be visible (with the DONE button) sooner for a player started in full screen mode? There is a fairly long delay with nothing but black screen when the full screen movie player starts, so the user cant tap the Done button if they become impatient (therefore the only other choice will be exit the app - would prefer to provide an option to cancel the playback if they want.
Thanks in advance!