2010-10-12 110 views

回答

1

包括媒体播放器框架,那么这样做:

MPMoviePlayerViewController *mediaPlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:@"http://mywebsite.com/movie.mov"]]; // this can be an NSURL to a file in your bundle 
[self presentMoviePlayerViewControllerAnimated:mediaPlayer]; 
mediaPlayer.view.backgroundColor = [UIColor blackColor]; 
[mediaPlayer release]; 

有通知和回调,但这是基础。