Skip to content

Instantly share code, notes, and snippets.

@kinkoi
Forked from xNekOIx/iOSAutoLayoutDebug
Created February 26, 2016 23:21
Show Gist options
  • Save kinkoi/a1f44863b9b7e50161da to your computer and use it in GitHub Desktop.
Save kinkoi/a1f44863b9b7e50161da to your computer and use it in GitHub Desktop.
iOS AutoLayout debug
po [[UIWindow keyWindow] _autolayoutTrace] // prints layouts ambiguity
po [view constraintsAffectingLayoutForAxis:0] // horizontal
po [view constraintsAffectingLayoutForAxis:1] // vertical
[view hasAmbiguousLayout] // BOOL
[view exerciseAmbiguityInLayout] // visualizing ambiguity
UIViewAlertForUnsatisfiableConstraints // symbolic breakpoint
expr (void)[CATransaction flush]
command alias objcpo po -l objc++ -O --
command alias objcexpr expr -l objc++ -O --
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment