在iPhone中以圆形视图播放视频

时间:2012-01-31 14:38:50

标签: iphone video custom-controls mpmovieplayercontroller

如何使用MPMoviePlayerController在圆形视图中播放视频。是否可以将框架设置为圆形?

请给我宝贵的建议。

1 个答案:

答案 0 :(得分:1)

考虑您在MPMoviePlayerController Class Reference中可以阅读的内容:

将电影播放器​​视图视为不透明结构。您可以将自己的自定义子视图添加到电影上的图层内容,但绝不能修改任何现有的子视图。

我认为您不能更改框架,但您可以添加子视图并像掩码一样使用它。

UIImageView *circle = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"circle.png"]];
[containerView addSubview:circle];
[circle release];

此处有MPMoviePlayerController Class Referencehttp://developer.apple.com/library/IOs/#documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/Reference/Reference.html