0
AVPlayerの動画はどこから残っていないのですか?ここに私のコードがあります。アプリの後に再開しないAVPlayerの動画はアクティブになります
-(void)appEnteredForeground:(NSNotification*)notification {
if(playerViewController.player.status == AVPlayerStatusReadyToPlay &&
playerViewController.player.currentItem.status == AVPlayerItemStatusReadyToPlay) {
total_duration = self.playerViewController.player.currentItem.duration;
[self.playerViewController.player seekToTime:currentTime];
[_playerViewController.player play];
}
}
-(void)appEnteredBackground:(NSNotification*)notification {
[playerViewController.player pause];
currentTime = [playerViewController.player currentTime];
[playerViewController.player seekToTime:currentTime];
}
これは他のアプリで動作していますが、このアプリでは動作しません。 – Bharathi
プレイヤーを操作する場所はありますか? – ronan
少数のビデオが再開していますが、再開していないものはほとんどありません。 – Bharathi