<!--
{
  "availability" : [
    "watchOS: 4.0.0 - 9.2.0"
  ],
  "documentType" : "symbol",
  "framework" : "WatchKit",
  "identifier" : "/documentation/WatchKit/WKExtension/isAutorotating",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "WatchKit"
    ],
    "preciseIdentifier" : "c:objc(cs)WKExtension(py)autorotating"
  },
  "title" : "isAutorotating"
}
-->

# isAutorotating

A Boolean value that determines whether the interface automatically rotates when the user flips their wrist.

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

## Discussion

Defaults to <doc://com.apple.documentation/documentation/Swift/false>.

Normally, when a user rotates their wrist–for example, to show a watchOS app to another person–the watch is likely to interpret this motion as dropping the wrist and may put the app to sleep. When autorotation is enabled, watchOS instead keeps the interface awake and rotates the content so that it is oriented properly for the viewer.

Do not enable autorotation indefinitely. Instead, enable it selectively on a specific interface controller that the user is likely to share. For example, in the interface controller’s [`willActivate()`](/documentation/WatchKit/WKInterfaceController/willActivate()) method, set this property to <doc://com.apple.documentation/documentation/Swift/true>. In the [`didDeactivate()`](/documentation/WatchKit/WKInterfaceController/didDeactivate()) method, set it back to <doc://com.apple.documentation/documentation/Swift/false>.

## See Also

[`deviceOrientationDidChange()`](/documentation/WatchKit/WKExtensionDelegate/deviceOrientationDidChange())

Tells the delegate that the device’s orientation has changed.



---

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)