Fullscreen API
-
The Fullscreen object helps you configure the settings of the fullscreen mode.
See moreDeclaration
Swift
public protocol Fullscreen : EventDispatcherProtocol
-
Specifies an aspect ratio for the player when in fullscreen mode.
See moreDeclaration
Swift
public enum AspectRatio : Int
-
The Fullscreen view controller class that presents the player when the
PresentationMode
is set to fullscreen. This class can be subclassed for customization, and the resulting type can be passed back to the player via theFullscreen.viewControllerClass
API. Additionally, it is possible to control when and how the view controller is presented via theFullscreen.presentationDelegate
API.Remark
When subclassing and overriding UIViewController lifecycle methods such as viewDidLoad, the super methods must be called to maintain functionality.Declaration
Swift
open class FullscreenViewController : UIViewController
-
The fullscreen delegate which allows control over the presentation of the fullscreen view controller.
See moreDeclaration
Swift
public protocol FullscreenPresentationDelegate : AnyObject