I've made a game that uses cocos2d to display graphics, and uses a lot of MPMoviePlayerController to display cutscenes.

The problem is - the game stopped working on iOS 4.3. It was fine up until iOS 4.2, but on iOS 4.3 the movies play OK, the gameplay also happens, but the screen is all black when not playing the movies.

I have a hard time tracking the problem. Suggestions?

Edit: I narrowed the thing down to MPMoviePlayerController - if I disable it, everything is fine. I guess something changed in 4.3?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

MPMoviePlayerController's view is clear in 4.0-4.2, and black in 4.3 by default, what helped was:

MPMoviePlayerController* moviePlayer = ...
moviePlayer.view.backgroundColor = [UIColor clearColor];
link|improve this answer
1  
+1 interesting - thanks for sharing! – Till Mar 26 '11 at 14:54
it's is not working method. – Sound Blaster Sep 23 '11 at 10:55
I just tried it on mine, and it works great. What isn't working about that for you? – christophercotton Oct 14 '11 at 1:38
feedback
MPMoviePlayerController* moviePlayer = ...
[moviePlayer.backgroundView setBackgroundColor:[UIColor whiteColor]];
// or set need color

read more in "MPMoviePlayerController Class Reference"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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