'Xcode 11 how to disable Auto Layout?

In previous versions of Xcode, I was able to just open the storyboard and click almost anywhere, and in the file inspector, there was a button to disable auto layout. It seems like that's not an option anymore? Am I being forced to use auto layout now?

screenshot of storyboard file inpsector with no autolayout option



Solution 1:[1]

According Apple forum this option silently disappeared in Xcode 11.

You can still do it programmatically at viewDidLoad

for constraint in self.view.constraints {  
    constraint.isActive = false  
}

Solution 2:[2]

Select your view in the storyboard and enable/disable LAYOUT automatic option in the right section

xcode11

Solution 3:[3]

In Interface Builder, highlight the constraint(s) on the left side and uncheck "Installed" in the Attributes Inspector

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Iulian Onofrei
Solution 2 Iulian Onofrei
Solution 3 user14290104