Skip to content

Instantly share code, notes, and snippets.

@kylesluder
Created October 5, 2012 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylesluder/3842250 to your computer and use it in GitHub Desktop.
Save kylesluder/3842250 to your computer and use it in GitHub Desktop.
Repeated Constraints
>>> -[<NSSplitView: 0x105e20130> resizeWithOldSuperviewSize:] superview from {543, 453} to {543, 493}
>>> -[<NSSplitView: 0x105e20130> setFrame:] from {{0, 0}, {543, 453}} to {{0, 0}, {0, 0}}
(gdb) po [self constraintsAffectingLayoutForOrientation:1]
<__NSArrayI 0x105bbfa00>(
<NSLayoutConstraint:0x105e19350 NSSplitView:0x105e20130.bottom == NSView:0x105e142a0.bottom>,
<NSLayoutConstraint:0x105e1c9a0 V:|-(0)-[NSSplitView:0x105e20130] (Names: '|':NSView:0x105e142a0 )>,
<NSLayoutConstraint:0x105e19350 NSSplitView:0x105e20130.bottom == NSView:0x105e142a0.bottom>
)
(gdb) po [self constraintsAffectingLayoutForOrientation:0]
<__NSArrayI 0x101c31800>(
<NSLayoutConstraint:0x105e0d0a0 H:|-(0)-[NSSplitView:0x105e20130] (Names: '|':NSView:0x105e142a0 )>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment