iOS MPMovieplayer controller style issue

拟墨画扇 提交于 2019-12-11 03:09:52

问题


I have create a VideoPlayer/VideoEditor, I can select a video from device memory by using picker view controller.

The below image shows how seek bar show when play a video but before choose,

It's show a seek bar with correspondent image

After Choose a picture i have use with the selected url to MPMoviePlayerController,

   player = [[MPMoviePlayerController alloc]initWithContentURL:[info objectForKey:@"UIImagePickerControllerMediaURL"]];

    player.controlStyle = MPMovieControlStyleEmbedded;

But show seek bar shows like a common one,

i want a seek bar with correspondent image like a above one. not a below one.

is it possible, and any Library available to do this?

Thanks in Advance.

来源:https://stackoverflow.com/questions/29942178/ios-mpmovieplayer-controller-style-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!