视频播放完毕后,我会立即显示文本。我正在使用通知技术来实现这一点。唯一的问题是 Observer 不时被调用两次。它触发了两次“itemDidFinishPlaying”(因此触发了同名方法)。我无法预测何时。我不知道为什么。它看起来是随机的(我知道这听起来很奇怪)就像它工作正常让我们说连续 15 次,下一次这种行为突然发生。我进行了重建并运行该应用程序,这一次它连续运行了 19 次,然后调用了两次 Observer,等等……不可预测。我已经尝试了所有场景来预测错误以修复它。到目前为止是不可能的。所以我有2个问题。
1)为什么它会“随机”发生?
2)如何解决这个双重调用问题?
以下这两个对话也没有帮助:
为什么 NSNotification 中的 Observer 调用了两次......?
如何阻止 NSNotification 中的观察者调用两次?
请在下面找到我的代码:
- (void) playAnimation: (NSString *) theString {
UIView *thisCurrentView = self.currentView;
UIView *thisReplacementView = [[UIView alloc] init];
//[avPlayer pause];
[self replaceView: thisCurrentView withView: thisReplacementView];
NSString *filepath = [[NSBundle mainBundle] pathForResource:theString ofType:@"mov"];
NSURL *fileURL = [NSURL fileURLWithPath:filepath];
// First create an AVPlayerItem
AVPlayerItem* playerItem = [AVPlayerItem playerItemWithURL:fileURL];
// Subscribe to the AVPlayerItem's DidPlayToEndTime notification.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];
// Pass the AVPlayerItem to a new player
controlledPlayer = [[AVPlayer alloc] initWithPlayerItem:playerItem];
AVPlayerLayer *animatedLayer = [AVPlayerLayer playerLayerWithPlayer:controlledPlayer];
[animatedLayer setFrame:CGRectMake(0, 0, 1024, 1024)];
[thisReplacementView.layer addSublayer: animatedLayer];
// Begin playback
[controlledPlayer play];
// Clear some content
[self displayNoContent];
pageContent = theString;
playingStatus = YES;
}
-(void)itemDidFinishPlaying {
[self displayContent: pageContent];
}