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

# wraps

A Boolean value that determines whether the stepper can wrap its value to the minimum or maximum value when incrementing and decrementing the value.

## Declaration

```swift
var wraps: Bool { get set }
```

## Discussion

Discussion If true, incrementing beyond maximumValue sets value to minimumValue; likewise, decrementing below minimumValue sets value to maximumValue. If false, the stepper doesn’t increment beyond maximumValue nor does it decrement below minimumValue but rather holds at those values. The default value for this property is false.

## See Also

### Configuring the stepper

- [isContinuous](uikit/uistepper/iscontinuous.md)
- [autorepeat](uikit/uistepper/autorepeat.md)
- [minimumValue](uikit/uistepper/minimumvalue.md)
- [maximumValue](uikit/uistepper/maximumvalue.md)
- [stepValue](uikit/uistepper/stepvalue.md)
