Re: Why is translatesAutoresizingMaskIntoConstraints on in my storyboard?

2013-09-04 Thread Kevin Cathey
All top level views in XIBs and storyboards have translatesAutoresizingMaskIntoConstraints=YES. This is because most UIKit and AppKit view and controller subclasses are not yet using constraints to layout, so the default of translatesAutoresizingMaskIntoConstraints=YES is least unexpected. As

Why is translatesAutoresizingMaskIntoConstraints on in my storyboard?

2013-08-19 Thread Rick Mann
I don't turn this on explicitly. But when I load a UIVieController into a view controller container, I'm getting bitching about unsatisfiable constraints, including NSAutoresizingMaskLayoutConstraint. But it's all from the same storyboard that uses autolayout. Why are there any autoresizing

Re: Why is translatesAutoresizingMaskIntoConstraints on in my storyboard?

2013-08-19 Thread Kyle Sluder
On Aug 19, 2013, at 2:48 AM, Rick Mann rm...@latencyzero.com wrote: I don't turn this on explicitly. But when I load a UIVieController into a view controller container, I'm getting bitching about unsatisfiable constraints, including NSAutoresizingMaskLayoutConstraint. But it's all from the