Overlay on top of Streaming MPMoviePlayerController

前端 未结 4 1889
被撕碎了的回忆
被撕碎了的回忆 2020-12-13 03:23

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

4条回答
  •  北海茫月
    2020-12-13 03:45

    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

提交回复
热议问题