视频自动播放 - 容器视图 - 在视图之间切换 - Swift 3.



我有一个用于在段之间切换的HMSegmentedControl。我使用容器视图在这些片段之间切换,效果很好,但我的一个选项卡有一个在viewDidAppear上自动播放的视频。所以我的问题是,由于容器视图加载了之前的所有内容并根据isHidden = false显示视图,即使未选择该片段,我的视频也会开始播放。我该如何处理这种情况?

这是我在segmentedControlValueChanged事件上的代码

print("selected index (segmentedControl.selectedSegmentIndex)")
    switch segmentedControl.selectedSegmentIndex {
    case 0:
        liveContainer.isHidden = true
    case 1:
        liveContainer.isHidden = true
    case 2:
        liveContainer.isHidden = false
    default:
        break
    }
您可以使用

NSNotificationCenter在显示/隐藏视频时向包含视频的视图控制器发送通知以播放/停止视频。这可以在容器视图段选择中完成。因此,您可以从viewDidAppear中删除自动播放,并将其添加到发送通知时调用的方法中。

例如,在segmentedControlValueChanged事件中,您可以编写:

switch segmentedControl.selectedSegmentIndex {
case 0:
    liveContainer.isHidden = true
    NotificationCenter.default.post(name: Notification.Name("StopVideo"), object: nil)
case 1:
    liveContainer.isHidden = true
    NotificationCenter.default.post(name: Notification.Name("StopVideo"), object: nil)
case 2:
    liveContainer.isHidden = false
    NotificationCenter.default.post(name: Notification.Name("PlayVideo"), object: nil)
default:
    break
}

而在你的视频ViewController中,你可以有两种方法:一种用于播放视频:

func playVideo() {
  //play video here
}

另一个用于阻止它:

func stopVideo() {
  //stop video here
}

在视频ViewController viewDidLoad方法中,您可以添加观察者:

NotificationCenter.default.addObserver(self, selector: #selector(playVideo), name: "PlayVideo", object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(stopVideo), name: "StopVideo", object: nil)

尝试NSNotificationCenter .

接收文件时:

-viewDidLoad:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveNotification:) name:@"NOTIFICATIONID" object:nil];

和创建接收通知的方法。

-(void)receiveNotification:(NSNotification *) notification{
    if ([notification.name isEqualToString:@"NOTIFICATIONID"])
    {
        NSDictionary* userInfo = notification.userInfo;
        NSNumber* segmentID = (NSNumber*)userInfo[@"segmentID"];
        NSLog (@"Successfully received test notification! %i", segmentID.intValue);
    }
}

要发布通知:

NSDictionary* userInfo = @{@"segmentID": @(segmentID)}; //Used to pass Objects to Notification
[[NSNotificationCenter defaultCenter] postNotificationName:@"NOTIFICATIONID" object:self userInfo:userInfo];

禁用当前自动播放。只需在收到通知时播放您的视频即可。仅在您选择细分时发布通知。

相关内容

  • 没有找到相关文章

最新更新