IVSPlayerState
Objective-C
enum IVSPlayerState : NSInteger {}
                Swift
enum State : Int, @unchecked Sendable
                Possible values returned by IVSPlayer.state
- 
                  
                  
Indicates that the status of the player is idle.
Declaration
Objective-C
IVSPlayerStateIdleSwift
case idle = 0 - 
                  
                  
Indicates that the player is ready to play the selected source.
Declaration
Objective-C
IVSPlayerStateReadySwift
case ready = 1 - 
                  
                  
Indicates that the player is buffering content.
Declaration
Objective-C
IVSPlayerStateBufferingSwift
case buffering = 2 - 
                  
                  
Indicates that the player is playing.
Declaration
Objective-C
IVSPlayerStatePlayingSwift
case playing = 3 - 
                  
                  
Indicates that the player reached the end of the stream.
Declaration
Objective-C
IVSPlayerStateEndedSwift
case ended = 4 
        IVSPlayerState Enumeration Reference