one small issue in my movieplayer..![movieplayer shows like this]

1: http://i.stack.imgur.com/WujxB.png but i want to show as below screenshotWant to show like this

mycode:

moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
moviePlayerController.view.frame = CGRectMake(0,0,320,460); 
moviePlayerController.fullscreen = YES; 
[self.view addSubview:moviePlayerController.view]; 
[moviePlayerController play];
link|improve this question

64% accept rate
Prajan, What exact you want? – Stack Jun 21 '11 at 10:29
@Stacky:thanx for ur reply..but i'm not grtting u..already i did that all.. setting frame for movieplayer and add that player to my view then what else i want to do – Prajan Jun 21 '11 at 10:31
@Stacky:At the first time itself i want to show the movieplayer as second screenshot (i.e.. with done button)remain works well.. – Prajan Jun 21 '11 at 10:32
@miamk:moviePlayerController.controlStyle = MPMovieControlStyleEmbedded; now i want to add this code and remove fullscreen property..right? – Prajan Jun 21 '11 at 10:37
Actually the above screenshot which is quick time player. – Prasanna Venkatesh Jun 21 '11 at 11:08
show 3 more comments
feedback

1 Answer

up vote 2 down vote accepted

Those are the default controls for fullscreen playback, since you set moviePlayerController.fullscreen = YES.

The controls you want are for embedded playback, not fullscreen.

What you want is moviePlayerController.controlStyle = MPMovieControlStyleEmbedded; but you can only use it if your movie is embbeded in one of your views. Then you would have the controls that you want, including a toggle between fullscreen and embedded.

link|improve this answer
@miamk:moviePlayerController.controlStyle = MPMovieControlStyleEmbedded; now i want to add this code and remove fullscreen property..right? – Prajan Jun 21 '11 at 10:39
@Prajan What i mean is that you are always going to have default controls on fullscreen. There's no way to change that. But you can have the controls that you want if your movie is embedded somewhere in a view, keeping in mind that when you hit the fullscreen toggle, the control are going to change to default one. – Leuguimerius Jun 21 '11 at 10:45
@miamk:moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:videoURL]; moviePlayerController.view.backgroundColor=[UIColor blackColor]; moviePlayerController.controlStyle = MPMovieControlStyleFullscreen;moviePlayerController.view.frame = CGRectMake(0,0,320,480); [self.view addSubview:moviePlayerController.view]; [moviePlayerController play]; – Prajan Jun 21 '11 at 10:56
@miamk:now i'm changing the code as above.now it showa done button at the first time.All controls are working now except done button. – Prajan Jun 21 '11 at 10:57
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlaybackComplete:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayerController]; – Prajan Jun 21 '11 at 10:58
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.