So, I've read the docs and am aware of this: Multiple MPMoviePlayerControllers on iOS 3.2/4.0 (also, by docs I mean apple's)
and unfortunately debugging this is hell bc: Bootstrap Server Error in Xcode IPHONE
So every 5 or so runs I have to reboot my machine.
But the main question is, I'm loading a lot of containers (just views). Within those containers, there might be something with an MPMoviePlayerController, which I turned into a custom class. Anyway, it works, plays movies just fine.
At any given time, there may be up to three of them on the screen. (I use paging, and unload the ones that are far away). So it's possible to have 3 movies, all hooked up to downloaded data.
They play, but of course, only one at a time. Not a problem. Only one containing view is active.
When the view changes a "page" (it's a UIScrollView) I manually set the "outsiders" to inactive. Essentially, it calls "stop" on the MPMoviePickerController. This stops it, but I can't resume. The controls literally vanish, and I can't resume. (iOS Bug?)
So I called Pause instead. Same thing.
I go back to play it, and it won't play.
Here's a funny one, pause one and go to play another. Crash. Something with the AVPlayerItem not being able to play 2 at once. I've programmed custom AV movie players because of needing 2 movies or whatnot, about to do that again if this doesn't work. Anywho... why two controllers use the same player item, I can only guess Apple uses a singleton in a really bad spot.
So, apple documentation clearly states I can load as many as I want, but only play one. Unfortunately, it doesn't say how to pause them properly, 'cause the controls disappear.
Anyone aware if this is a bug? Or is there something other than pause and stop to try?
I will probably resort to the AV stuff if not. Anyway, if not for the reboots, I'd be trying some form of resume stuff this moment, trying to get an answer rather than just a question. Thanks for any tips/suggestions!
Will let everyone know if I find it