TimeRange

public class TimeRange : NSObject, Codable

Helps get information regarding a certain period in the playback.

  • The start time of the range.

    Declaration

    Swift

    public let start: Double
  • end

    The end time of the range.

    Declaration

    Swift

    public let end: Double
  • Constructs a TimeRange object.

    Declaration

    Swift

    public init(start: Double, end: Double)

    Parameters

    start

    start time, in seconds.

    end

    end time, in seconds.