Showing UIImageView in MPMoviePlayer
Can anybody help in me out of how to show a UIImageView having Image of a border to be displayed 开发者_如何学Caround the Video Playing in MPMoviePlayer.
make sure your border image has a transparent background , ie all visible parts have to be transparent
moviePlayer.view addSubview:borderImage;
This will add the UIImageView over your moviePlayer.view and the transparent portion will allow for the movie to be seen
精彩评论