2013-04-03 132 views
1

如何以全屏播放视频,防止控件在触摸视频(暂停,播放等)时出现?相反,当视频被触摸时,我想关闭它。 可以这样做吗?无控制播放视频

在此先感谢

回答

5
MPMoviePlayerViewController *playerViewController=[[MPMoviePlayerViewController alloc]initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"xyz" ofType:@"mp4"]]]; 
    [self presentModalViewController:playerViewController animated:YES]; 
    MpMoviePlayerController *player = [playerViewController moviePlayer]; 
    player.controlStyle=MPMovieControlStyleNone; //hide the controls 
    [player play];