Fullscreen
public protocol Fullscreen : EventDispatcherProtocolThe Fullscreen object helps you configure the settings of the fullscreen mode.
- 
                  
                  The supported interface orientations for fullscreen mode as a UIInterfaceOrientationMask.DeclarationSwift var supportedInterfaceOrientations: UIInterfaceOrientationMask { get }
- 
                  
                  When in fullscreen presentation mode returns the FullscreenViewControllerthat contains the player. Returns nil otherwise.DeclarationSwift var viewController: FullscreenViewController? { get }
- 
                  
                  The type of the FullscreenViewControllerthat will be presented when the player goes to fullscreen presentation mode.DeclarationSwift var viewControllerClass: FullscreenViewController.Type? { get set }
- 
                  
                  The fullscreen delegate which allows control over the presentation of the fullscreen view controller. Setting it will override the default behavior. DeclarationSwift var presentationDelegate: FullscreenPresentationDelegate? { get set }
- 
                  
                  Sets the supported interface orientations for fullscreen mode. DeclarationSwift func setSupportedInterfaceOrientations(supportedInterfaceOrientations: UIInterfaceOrientationMask)ParameterssupportedInterfaceOrientationsThe supported interface orientations. 
- 
                  
                  Adds the event listener of the given EventType.Remark When attaching a listener on the wrong object the application will crash. DeclarationSwift func addEventListener<E>(type: EventType<E>, listener: @escaping (E) -> ()) -> EventListener where E : EventProtocolParameterstypeEventTypeof the added event listener. SeeFullscreenEventTypesfor possible values.listenerClosure called when event is dispatched. Return ValueThe newly added EventListener.
- 
                  
                  Removes the event listener for the given EventType.DeclarationSwift func removeEventListener<E>(type: EventType<E>, listener: EventListener) where E : EventProtocolParameterstypeEventTypeof the event listener to be removed. SeeFullscreenEventTypesfor possible values.listenerEventListenerwhich was added byaddEventListener(...).
