我是iphone新手,我不知道 如何在MPMoviePlayerViewController中实现自定义控件, 请帮帮我
答案 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];