私はAVPlayerItem
とAVPlayer
のドキュメントを調べてきましたが、アイテムの再生が終了したときのコールバックがないようです。利用できるデリゲートコールバックがあるか、AVPlayerActionAtItemEnd
が独自のアクションを記述できるようにしたいと思っていました。
AVPlayerがアイテムの再生を終了したことを検出する方法を理解するにはどうすればよいですか?
NSNotification
を使用して、再生が終了したときに警告します。
通知に登録:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying:) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];
完了時に呼び出すメソッド:
-(void)itemDidFinishPlaying:(NSNotification *) notification {
// Will be called when AVPlayer finishes playing playerItem
}
Swift-i-fied(バージョン3)
class MyVideoPlayingViewController: AVPlayerViewController {
override func viewDidLoad() {
// Do any additional setup after loading the view.
super.viewDidLoad()
let videoURL = URL(fileURLWithPath: Bundle.main.path(forResource: "MyVideo",
ofType: "mp4")!)
player = AVPlayer(url: videoURL)
NotificationCenter.default.addObserver(self,
selector: #selector(MyVideoPlayingViewController.animationDidFinish(_:)),
name: .AVPlayerItemDidPlayToEndTime,
object: player?.currentItem)
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
player?.play()
}
func animationDidFinish(_ notification: NSNotification) {
print("Animation did finish")
}
deinit {
NotificationCenter.default.removeObserver(self)
}
}
これは私がやった方法です。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedCallback:) name:AVPlayerItemDidPlayToEndTimeNotification object:player.currentItem];
- (void)movieFinishedCallback:(NSNotification*)aNotification
{
// [self dismissViewControllerAnimated:YES completion:Nil];
}