iPad でビデオを再生し、iPad の「ホーム」ボタンを使用して停止しています。ビデオを再度開始すると、最初からではなく、以前に停止した場所から開始する必要があります。どうすればこれを行うことができますか?
ビデオを最初から再開するには、使用しました
- (void)applicationWillEnterForeground:(UIApplication *)application
{
NSLog(@"app enter foreground");
PlayVideo *PVC=[[PlayVideo alloc] initWithNibName:@"PlayVideo" bundle:nil];
self.window.rootViewController=PVC;
}