我正在尝试在 UICollectionViewCell 中播放 mp4 电影。我没有运气让它显示。所以,我的第一个问题是:这可能吗?如果是这样,我做错了什么?这是一个非 ARC 项目,我没有使用任何 XIB 或故事板......
NSURL * theURL = nil;
NSBundle * bundle = [NSBundle mainBundle];
if (bundle)
{
NSString * thePath = [bundle pathForResource:@"intro" ofType:@"mp4"];
if ( thePath )
{
theURL = [NSURL fileURLWithPath:thePath];
}
}
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL: theURL];
[player prepareToPlay];
[player.view setFrame: self.contentView.bounds]; // player's frame must match parent's
[self.contentView addSubview: player.view];
[player play];
[player release];