Reputation: 487
Here is the question: Can a View in iPad to handle two different MpMoviePlayerView in the same Time I have read that the moviePlayer is a singleton and I have to fix the observer with hard Code. I am triying to do multiple Movie player in the same View?? Is it possible??? Any one have an idea???
Upvotes: 0
Views: 492
Reputation: 31304
MPMoviePlayerControllers
won't let you play back two videos simultaneously. Sorry! Whilst you can create two MPMoviePlayer
objects if you try and play two streams back at the same time it will just break. This is mentioned in the documentation for that class, buried away somewhere.
Upvotes: 2