---
title: value
framework: uikit
role: symbol
role_heading: Instance Property
path: uikit/uistepper/value
---

# value

The numeric value of the stepper.

## Declaration

```swift
var value: Double { get set }
```

## Discussion

Discussion When the value changes, the stepper sends the valueChanged flag to its target (see addTarget(_:action:for:)). Refer to the description of the isContinuous 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.
