I went through the example from apple \"MoviePlayer on iPhone\"
Im trying to overlay on top of the mpmovieplayercontroller,
it works perfectly with video cli
A very simple solution:
appDelegate.window.backgroundColor = [UIColor clearColor]; appDelegate.window.windowLevel = 2;
This will keep your app UI on top of the video window.
my post