我正在 iPad 中播放视频并使用 iPad 上的“主页”按钮停止它。当我再次开始播放视频时,它应该从之前停止的地方开始,而不是从头开始。谁能告诉我该怎么做?
要从头开始播放视频,我使用了
- (void)applicationWillEnterForeground:(UIApplication *)application
{
NSLog(@"app enter foreground");
PlayVideo *PVC=[[PlayVideo alloc] initWithNibName:@"PlayVideo" bundle:nil];
self.window.rootViewController=PVC;
}