6

视频播放完毕后,我会立即显示文本。我正在使用通知技术来实现这一点。唯一的问题是 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];

}

4

3 回答 3

8

尝试这个,

-(void)itemDidFinishPlaying {

      [self displayContent: pageContent];
      [[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];

}

它可能对你有用。

编辑1:

每次设置新的通知观察者之前删除。尝试以下场景。它将确保删除以前的观察者(即使它不存在没有问题)并添加新的观察者。

// Subscribe to the AVPlayerItem's DidPlayToEndTime notification.

[[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];
于 2013-04-27T05:05:57.460 回答
1

这仅在 AirPlay 期间发生在我身上。我正在使用以下解决方法来忽略重复通知。

if ([notificaiton.object isEqual:self.player.currentItem] && (self.player.rate > 0))
{
    [self.player pause];

    //Do your stuff here.
}

NSUserDefault 的答案也有效,但是您必须再次添加观察者,并且根据您的设置可能会很复杂。

于 2015-07-22T13:20:15.360 回答
0

1)验证你只有一个观察者,而不是从视图控制器中悬空的观察者没有按预期释放。

2)如果您确认只有一个观察者,听起来您可以使用跟踪变量并在第一个通知实例之后忽略任何内容。不优雅,但它应该工作。

于 2018-07-19T08:29:40.577 回答