UIStepper Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/UIKit.framework |
| Availability | Available in iOS 5.0 and later. |
| Declared in | UIStepper.h |
Overview
A stepper control provides a user interface for incrementing or decrementing a value.
A stepper displays two buttons, one with a minus (“–”) symbol and one with a plus (“+”) symbol. The bounding rectangle for a stepper matches that of a UISwitch object.
If you set stepper behavior to “autorepeat” (which is the default), pressing and holding one of its buttons increments or decrements the stepper’s value repeatedly. The rate of change depends on how long the user continues pressing the control.
For information about basic view behaviors, see View Programming Guide for iOS.
Tasks
Configuring the Stepper
-
continuousproperty -
autorepeatproperty -
wrapsproperty -
minimumValueproperty -
maximumValueproperty -
stepValueproperty
Accessing the Stepper’s Value
-
valueproperty
Customizing Appearance
Properties
autorepeat
The automatic vs. nonautomatic repeat state of the stepper.
Discussion
If YES, the user pressing and holding on the stepper repeatedly alters value.
The default value for this property is YES.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hcontinuous
The continuous vs. noncontinuous state of the stepper.
Discussion
If YES, value change events are sent immediately when the value changes during user interaction. If NO, a value change event is sent when user interaction ends.
The default value for this property is YES.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hmaximumValue
The highest possible numeric value for the stepper.
Discussion
Must be numerically greater than minimumValue. If you attempt to set a value equal to or lower than minimumValue, the system raises an NSInvalidArgumentException exception.
The default value of this property is 100.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hminimumValue
The lowest possible numeric value for the stepper.
Discussion
Must be numerically less than maximumValue. If you attempt to set a value equal to or greater than maximumValue, the system raises an NSInvalidArgumentException exception.
The default value for this property is 0.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hstepValue
The step, or increment, value for the stepper.
Discussion
Must be numerically greater than 0. If you attempt to set this property’s value to 0 or to a negative number, the system raises an NSInvalidArgumentException exception.
The default value for this property is 1.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.htintColor
The tint color for the stepper control.
Discussion
The value of this property is nil by default.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hvalue
The numeric value of the stepper.
Discussion
When the value changes, the stepper sends the UIControlEventValueChanged flag to its target (see addTarget:action:forControlEvents:). Refer to the description of the continuous property for information about whether value change events are sent continuously or when user interaction ends.
The default value for this property is 0. This property is clamped at its lower extreme to minimumValue and is clamped at its upper extreme to maximumValue.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hwraps
The wrap vs. no-wrap state of the stepper.
Discussion
If YES, incrementing beyond maximumValue sets value to minimumValue; likewise, decrementing below minimumValue sets value to maximumValue. If NO, the stepper does not increment beyond maximumValue nor does it decrement below minimumValue but rather holds at those values.
The default value for this property is NO.
Availability
- Available in iOS 5.0 and later.
Declared In
UIStepper.hInstance Methods
backgroundImageForState:
Returns the background image associated with the specified control state.
Parameters
- state
The control state in which the image is displayed.
Return Value
The background image used by the control when it is in the specified state.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hdecrementImageForState:
Returns the image used for the decrement glyph of the control.
Parameters
- state
The control state in which the image is displayed.
Return Value
The image used for the decrement glyph of the control.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hdividerImageForLeftSegmentState:rightSegmentState:
Returns the divider image for the given combination of left and right states.
Parameters
- leftState
The state of the left side of the control.
- rightState
The state of the right side of the control.
Return Value
The image used for the specified combination of left and right states.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hincrementImageForState:
Returns the image used for the increment glyph of the control.
Parameters
- state
The control state in which the image is displayed.
Return Value
The image used for the increment glyph of the control.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hsetBackgroundImage:forState:
Sets the background image for the control when it is in the specified state.
Parameters
- image
The background image to use for the specified state.
- state
The control state in which you want to display the image.
Discussion
For good results, image must be a stretchable image.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hsetDecrementImage:forState:
Sets the image to use for the decrement glyph of the control.
Parameters
- image
The image to use for the decrement glyph.
- state
The control state in which you want to display the image.
Discussion
The image you specify is composited on top of the control’s background to create the final control. If you do not specify a custom image, a minus (-) glyph is used.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hsetDividerImage:forLeftSegmentState:rightSegmentState:
Sets the image to use for the given combination of left and right states.
Parameters
- image
The divider image to use.
- leftState
The state of the left side of the control.
- rightState
The state of the right side of the control.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.hsetIncrementImage:forState:
Sets the image to use for the increment glyph of the control
Parameters
- image
The image to use for the increment glyph.
- state
The control state.
Discussion
The image you specify is composited on top of the control’s background to create the final control. If you do not specify a custom image, a plus (+) glyph is used.
Availability
- Available in iOS 6.0 and later.
Declared In
UIStepper.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-09-19)