TimeSpan

@objc public class TimeSpan: NSObject

Represents a span of time.

  • The starting time for the span.

    Declaration

    Swift

    public var startTime: Double = 0
  • The ending time for the span.

    Declaration

    Swift

    public var endTime: Double = 0
  • Initializes a TimeSpan object.

    Declaration

    Swift

    public init(startTime: Double, endTime: Double)

    Parameters

    startTime

    The start time.

    endTime

    The end time.