Xcode 5 layout errors – Misplaced View Frame for Label will be different at runtime-Collection of common programming errors
If you’re still looking for an answer here, the answer is likely that you have either no constraints, or improper constraints, on your AutoLayout view.
You can fix this by selecting the view and going to the Xcode menu option: Editor -> Resolve Auto Layout Issues -> Add Missing Constraints / Reset to Suggested Constraints
.
You can also select the entire layout and do the same thing, this will reset all of the views on your layout to recommended constraints.
If you need to do custom constraints, you will have to set up your own auto layout constraints either in the Storyboard/XIB file, or manually in code.
For more information about Auto Layout, you can see Apple’s documentation.
Finally, you can also turn off auto layout on the layout if you want it to appear as-is, with no automatic readjustments (this is not recommended).