I have two questions.
First, When I played the movie in device(iPad), I received this message in console. 'Unbalanced calls to begin/end appearance transitions for < MPMoviePlayerViewController: 0xf6a0c40>'
What's wrong in my code?
It's my code.
-(void)playMovie:(NSString *)fileName
{
NSString *movieFile = [[NSBundle mainBundle] pathForResource:fileName ofType:@"mov"];
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:movieFile];
MPMoviePlayerViewController *tempMoviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:fileURL];
MPMoviePlayerController *moviePlayer = [tempMoviePlayer moviePlayer];
[tempMoviePlayer.view setFrame:CGRectMake(0, 0, 1024, 768)];
[_zoomImageView addSubview: tempMoviePlayer.view];
[self presentMoviePlayerViewControllerAnimated:tempMoviePlayer];
[self setWantsFullScreenLayout:YES];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playMovieFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[moviePlayer play];
[fileURL release];
[tempMoviePlayer release];
}
-(void)playMovieFinished:(NSNotification *)theNotification
{
MPMoviePlayerController *moviePlayer = [theNotification object];
[[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[UIApplication sharedApplication].statusBarHidden = YES;
}
Second, I modified my code using not MPMoviePlayerController but MPMoviePlayerViewController with refering to the book example('iPhone App Development Complete Guide'). But when I stopped the movie, 'playMovieFinished' method didn't work.
What's wrong?
It's modified code.
-(void)playMovie:(NSString *)fileName
{
NSString *movieFile = [[NSBundle mainBundle] pathForResource:fileName ofType:@"mov"];
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:movieFile];
MPMoviePlayerViewController *tempMoviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:fileURL];
[tempMoviePlayer.view setFrame:CGRectMake(0, 0, 1024, 768)];
[_zoomImageView addSubview: tempMoviePlayer.view];
[self presentMoviePlayerViewControllerAnimated:tempMoviePlayer];
[self setWantsFullScreenLayout:YES];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playMovieFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:tempMoviePlayer];
[tempMoviePlayer.moviePlayer play];
[fileURL release];
}
-(void)playMovieFinished:(NSNotification *)theNotification
{
MPMoviePlayerViewController *theMoviePlayer = [theNotification object];
[[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:theMoviePlayer.moviePlayer];
[theMoviePlayer release];
theMoviePlayer = nil;
[UIApplication sharedApplication].statusBarHidden = YES;
}
Plz, help me.... Thank you for your helping...