문제

I'm using MPMoviePlayerController to stream audio/video files from a servrer. It works great on all other OS versions. However, on 3.1.2, it shows the Default.png image (used to display at app splash screen) in the background while the movie loads. It only happens for the first time and the player works fine (no image in background) on all subsequent plays.

I have used the following properties:

player.scalingMode = MPMovieScalingModeNone; 
player.backgroundColor = [UIColor blackColor];

I have gone through apple documentation and web in general but seems like no one has this problem. Is there any way I can get rid of this image (Default.png) shown as the player's background?

Thanks.

올바른 솔루션이 없습니다

다른 팁

Sounds like an uninitialized GL texture is briefly being used by the movie player.

Not sure what you can do about that.

Maybe you can hide the player while it loads.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top