AVPlayerItem *currentItem = self.player.currentItem;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerItemDidReachEnd:) name:AVPlayerItemDidPlayToEndTimeNotification object:currentItem];
我有上述通知设置。当我用 iOS 7 运行测试时,它被调用得非常好,但是,我用 iOS 8 运行我的应用程序时,它从来没有被调用过。