<!--
{
  "availability" : [
    "iOS: 5.0.0 -",
    "iPadOS: 5.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIStepper/wraps",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIStepper(py)wraps"
  },
  "title" : "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.

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

## Discussion

If <doc://com.apple.documentation/documentation/Swift/true>, incrementing beyond [`maximumValue`](/documentation/UIKit/UIStepper/maximumValue) sets [`value`](/documentation/UIKit/UIStepper/value) to [`minimumValue`](/documentation/UIKit/UIStepper/minimumValue); likewise, decrementing below [`minimumValue`](/documentation/UIKit/UIStepper/minimumValue) sets [`value`](/documentation/UIKit/UIStepper/value) to [`maximumValue`](/documentation/UIKit/UIStepper/maximumValue). If <doc://com.apple.documentation/documentation/Swift/false>, the stepper doesn’t increment beyond [`maximumValue`](/documentation/UIKit/UIStepper/maximumValue) nor does it decrement below [`minimumValue`](/documentation/UIKit/UIStepper/minimumValue) but rather holds at those values.

The default value for this property is <doc://com.apple.documentation/documentation/Swift/false>.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)