2013-04-03 133 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];