views:

244

answers:

1

how to customize MPMoviePlayerController and how can use next and previous buttons in MPMoviePlayerController and move to next and previous movies after completion or clicking on those buttons?

A: 

to make short answer:

Try to inspect all the view in the main UIWindow like:

for(UIView* ViewLvl1 in [[UIApplication sharedApplication] keyWindow].subviews){

NSLog(@"1 %@",[viewLvl1 descriptions]); for(UIView* ViewLvl2 in viewLvl1.subviews) { NSLog(@"2 %@",[viewLvl2 descriptions]); …etc… } }

After that you will get all the name and property of each view , like MPVideoView or MPFullScreenTransportControls(this is where the button are).

So your question ask a lot of work, there is no easy answer unfortunately. For one time, apple did shit.

Good luck

xeonarno

related questions