Movie fades in through black
I'm trying to fade in a movie. Problem is it开发者_运维问答 doesn't cross-dissolve in, but fades through black for some reason. I have the first frame of the movie as an UIIMageView on screen, and when the movie starts playing the screen darkens for a while. I would expect the transition to be invisible.
An example project can be downloaded here:
http://www.sendspace.com/file/2u9e5o
Thanx in advance Nir.
Force your instance of MPMoviePlayerController
to use a transparent view.
moviePlayer.view.backgroundColor = [UIColor clearColor];
精彩评论