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
startTimeThe start time.
endTimeThe end time.
TimeSpan Class Reference