0
我想實現一個AVPlayer到一個集合單元的每一行,但我沒有找到任何好的documentation.Any想法,我可以找到一些?中的CollectionView播放多個視頻流暢,如Facebook
我想實現一個AVPlayer到一個集合單元的每一行,但我沒有找到任何好的documentation.Any想法,我可以找到一些?中的CollectionView播放多個視頻流暢,如Facebook
嘗試此代碼
self.moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"something" ofType:@"mp4"]]];
[self.moviePlayer.view setFrame:CGRectMake(0, 0, 320, 320)];
[self.moviePlayer play];
[self.view addSubview:self.moviePlayer.view];
[here](http://stackoverflow.com/questions/28263884/using-multiple-avplayer-in-a-tableview-like-instagram?rq=1) –