0
지금은 mpmovieplayercontroller를 사용하여 사용하고 있지만 다른 비디오를 재생하려면 mpmovieplayercontroller를 닫아야합니다. mpmovieplayercontroller를 닫지 않고 여러 개의 비디오를 재생할 수 있습니까?, 어떻게 내가 하나씩 여러 개의 비디오를 스트리밍 할 수 있습니까?
들으
지금은 mpmovieplayercontroller를 사용하여 사용하고 있지만 다른 비디오를 재생하려면 mpmovieplayercontroller를 닫아야합니다. mpmovieplayercontroller를 닫지 않고 여러 개의 비디오를 재생할 수 있습니까?, 어떻게 내가 하나씩 여러 개의 비디오를 스트리밍 할 수 있습니까?
들으
당신은 당신의 MPMoviePlayerController
의 MPMoviePlayerPlaybackDidFinishNotification
통지에 가입 할 수 있습니다. 예를 들어
, 당신은 :
// this is a PoC code, you can do it a lot cleaner
// in your .h
@property (nonatomic, retain) MPMoviePlayerController *moviePlayer;
@property (nonatomic, retain) NSMutableArray *movieUrls;
int indexPlayed;
// in your .m
- (void)setupPlayer { // or in your constructor, viewDidLoad, etc
moviePlayer = [[MPMoviePlayer alloc] init];
movieUrls = [NSMutableArray arrayWithObjects:nil, nil, nil]; // add your movie NSURLs here
indexPlayed = 0;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerPlay:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[self playerPlay:nil];
}
- (void)playerPlay:(NSNotification *)n {
if (indexPlayed < [movieUrls count]) {
moviePlayer.contentURL = [movieUrls objectAtIndex:indexPlayed++];
[moviePlayer play];
}
}