I read all the SO questions like this and I'm so lost. I get the following error:
2015-09-14 22:59:40.455 guess-who[60143:9602686] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints) ( "<NSLayoutConstraint:0x7c0f8e30 UIImageView:0x7b6efb60.top == _UILayoutGuide:0x7c0f67a0.top>", "<_UILayoutSupportConstraint:0x7c0f8ae0 V:[_UILayoutGuide:0x7c0f67a0(0)]>", "<_UILayoutSupportConstraint:0x7c0f0070 _UILayoutGuide:0x7c0f67a0.bottom == UIView:0x7c0f65e0.bottom>", "<NSAutoresizingMaskLayoutConstraint:0x7b6f6130 h=--& v=--& UIImageView:0x7b6efb60.midY == + 204>", "<NSAutoresizingMaskLayoutConstraint:0x7b6f6160 h=--& v=--& V:[UIImageView:0x7b6efb60(220)]>", "<NSLayoutConstraint:0x7b6f6dc0 'UIView-Encapsulated-Layout-Height' V:[UIView:0x7c0f65e0(518)]>", "<NSAutoresizingMaskLayoutConstraint:0x7b6f6e20 h=-&- v=-&- 'UIView-Encapsulated-Layout-Top' V:|-(0)-[UIView:0x7c0f65e0] (Names: '|':UIView:0x7c0effc0 )>" ) Will attempt to recover by breaking constraint <_UILayoutSupportConstraint:0x7c0f0070 _UILayoutGuide:0x7c0f67a0.bottom == UIView:0x7c0f65e0.bottom>
I got this for a bunch of other restrictions that I have successfully resolved, but this one is haunting me. I do not know what UILayoutSupportConstraint ; The documentation is not very thorough. I looked at the view debugger and the UIView:0x7c0f65e0 seems to refer to my main view (although for some reason is it a child of an empty view?). I cannot find anything with 0x7c0f67a0, although this seems to apply to LayoutGuide, saying that their bottoms should be equal. I'm not sure what other tools are available for me to figure this out.
EDIT:
Using View Debugger, I narrowed it down to one of these two restrictions, none of which the source knows:

I can not find where any of them will be installed. I know that every first sentence is to set translatesAutoresizingMaskIntoConstraints to false, but this destroys my entire layout, and I don't know how to fix it.
source share