I have an app with a splash screen. For the splashscreen I've decided to add a m4v movie. I'm using the MPMoviePlayerController
to show the movie. Everything is working as expected except for one thing:
I'm trying to make the MPMoviePlayerController
loop by subscribing to it's MPMoviePlayerPlaybackDidFinishNotification
notification and issuing a [notification.object play]
if the data didn't finish loading.
This works partially, it restarts the movie, but there's the fadeout and re-fadein that make it look bad.
Is there any other way to loop the movie?
Or any way to remove the fades?