I've implemented this similarly to the example project, however, when I switch tabs on the tab bar I would like the video to pause/ mute. I have attempted the following, with no luck. Any ideas?
I've added the pause function in override func viewDidDisappear(_ animated: Bool) and also in override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem)
I've implemented this similarly to the example project, however, when I switch tabs on the tab bar I would like the video to pause/ mute. I have attempted the following, with no luck. Any ideas?
func pauseVideos(){ mmPlayerLayer.player?.pause() mmPlayerLayer.player?.isMuted = true }
I've added the pause function in
override func viewDidDisappear(_ animated: Bool)
and also inoverride func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem)