init(style:gaugeColors:gaugeColorLocations:start:startFillFraction:end:endFillFraction:)
Creates a time interval gauge, letting you specify whether the gauge fills or empties as time passes.
Declaration
convenience init(style: CLKGaugeProviderStyle, gaugeColors: [UIColor]?, gaugeColorLocations: [NSNumber]?, start startDate: Date, startFillFraction: Float, end endDate: Date, endFillFraction: Float)Parameters
- style:
The style defining the gauge’s visual appearance. For a list of valid styles, see Clkgaugeproviderstyle.
- gaugeColors:
The gauge’s colors. These colors are displayed as a gradient.
- gaugeColorLocations:
The location of each color along the gauge. Locations are values between
0.0and1.0. Ifnil, the colors are evenly spaced along the gauge. - startDate:
The start time and date.
- startFillFraction:
The starting position for the gague. This is a value between
0.0and1.0. - endDate:
The end time and date. This value must be later than or equal to the start date.
- endFillFraction:
The end position of the gague. This is a value between
0.0and1.0.
Return Value
A newly instantiated time interval gauge provider.
Discussion
The gauge shows the amount of time that has elapsed, based on the current time relative to the specified start and end dates. You can specify whether the gauge counts up or counts down using the startFillFraction and endFillFraction parameters.
If the
startFillFractionis less than theendFillFraction, the gauge fills as it counts up from the start time to the end time.If the
startFillFractionis greater than theendFillFraction, the gauge empties as it counts down from the start time to the end time.On circular gauges, the fill fractions also determine the position of the start and end points along the circle.
0.0indicates the top of the circle. Values increase as you move around the circle clockwise, with1.0back at the top again.On corner gauges, you should always use the
0.0and1.0as your fractional values, to ensure that you’re utilizing the whole gauge.
If you provide both colors and locations, then the gaugeColors and gaugeColorLocations arrays must be the same length.