<!--
{
  "availability" : [
    "iOS: 6.0.0 - 8.0.0",
    "iPadOS: 6.0.0 - 8.0.0",
    "macCatalyst: 13.1.0 - 13.1.0"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIViewController/shouldAutomaticallyForwardRotationMethods()",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIViewController(im)shouldAutomaticallyForwardRotationMethods"
  },
  "title" : "shouldAutomaticallyForwardRotationMethods()"
}
-->

# shouldAutomaticallyForwardRotationMethods()

Returns a Boolean value indicating whether rotation methods are forwarded to child view controllers.

```
func shouldAutomaticallyForwardRotationMethods() -> Bool
```

## Return Value

<doc://com.apple.documentation/documentation/Swift/true> if rotation methods are forwarded or <doc://com.apple.documentation/documentation/Swift/false> if they are not.

## Discussion

This method is called to determine whether to automatically forward rotation-related containment callbacks to child view controllers.

The default implementation returns <doc://com.apple.documentation/documentation/Swift/true>. Subclasses of the [`UIViewController`](/documentation/UIKit/UIViewController) class that implement containment logic may override this method to control how these methods are forwarded. If you override this method and return <doc://com.apple.documentation/documentation/Swift/false>, you are responsible for forwarding the following methods to child view controllers at the appropriate times:

- [`willRotate(to:duration:)`](/documentation/UIKit/UIViewController/willRotate(to:duration:))
- [`willAnimateRotation(to:duration:)`](/documentation/UIKit/UIViewController/willAnimateRotation(to:duration:))
- [`didRotate(from:)`](/documentation/UIKit/UIViewController/didRotate(from:))

---

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)