このURLのビデオを再生したいhttp://www.youtube.com/watch?v=JPUWNcGDyvM&feature=player_embedded前回一時停止した場所...ビデオを再生できますが、このページを離れて戻って見るとこのビデオは以前から始まりますが、最後に一時停止したところから続けてこのビデオを表示したいと思います。コード..
- (void)viewDidLoad
{
player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@video.mp4",urlVideo]]];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(movieFinishedCallback:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
//---play movie---
[player prepareToPlay];
[player pause];
player.view.frame = CGRectMake(0, 0, 320, 367);
[self.view addSubview:player.view];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(movieFinishedCallback:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
[super viewDidLoad];
}
私のmovieFinishedCallbackmメソッドは次のとおりです:-
- (void) movieFinishedCallback:(NSNotification*) aNotification {
player = [aNotification object];
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
}