Search code examples
iphoneiosxcodeios6autosize

How do you disable the NSConstraint in ios6 Xcode?


Possible Duplicate:
Remove autolayout (constraints) in Interface Builder

I am creating an app and I don't want the NSConstraints to be enabled because they are moving stuff in the UIViewController when I run the app.

Is there any way that I can disable them? Maybe a bit of code in each View Controller or just a setting.


Solution

  • Disable the autolayout in your xib's file inspector.

    autolayout

    Check this autolayout tutorial for resolving the issues, without disabling it.