如何在MPMoviePlayerViewController中添加自定义控件?

时间:2012-02-20 08:25:27

标签: iphone ios ipad

我是iphone新手,我不知道 如何在MPMoviePlayerViewController中实现自定义控件, 请帮帮我

1 个答案:

答案 0 :(得分:0)

使用MPMoviePlayerController的视图在视频上添加任何内容

喜欢

MPMoviePlayerController *moviePlayerController;// initialize the MPMoviePlayerController with URL 
UILable *lable = [[UILable alloc] init];
lable.frame = CGRectMake(0,0,100,200);
[moviePlayerController.view addSubview:lable];
[lable release];