
Tap to fullscreen
Hi there, I want to be able to go into the fullscreen with the JWPlayer iOS SDK on a user's tap. Unfortunately when I listen to the onDisplayClick() delegate and programmatically enter the fullscreen with enterFullScreen() there are two errors that occur:
1. when I am in fullscreen and I double tap the player is not visible anymore (only a black view where the normal size player was) and the sound continues to play
2. when someone double taps on the normal size video the player gets also into the state of 1.
I tested your demo file and my implementation and the error occurs in both cases. I read that I could hide the controls but this is not an option for me. I tried to activate and deactivate the controls at some points but this forces me to load the config into the player which reloads the player, also not a desired behavior.
func onDisplayClick() {
player.enterFullScreen()
}