Reputation: 9218
I'm using a MPMoviePlayerViewController in an iOS Objective-C project and aim to play two movies right after each other in full screen, without any visible black flicker delay in-between the two playings. How would one go about this? Right now, when I run my code which is similar to http://www.devx.com/wireless/article/44642/1954 , there will be a small lag in-between the first and second movie, whereas the point of my potential game is that it should appear seamless and unnoticeable.
Thanks for any help!
Upvotes: 0
Views: 460
Reputation: 12405
the lag will always be there , the only thing that you can do is join the two movies together before playing them using the AVComposition class and then play them without any lag.
Upvotes: 1