We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0234972 + 3b5f174 commit 9438fa2Copy full SHA for 9438fa2
commands/FBAutoLayoutCommands.py
@@ -31,7 +31,9 @@ def args(self):
31
32
def run(self, arguments, options):
33
view = fb.evaluateInputExpression(arguments[0])
34
- print fb.describeObject('[{} _autolayoutTrace]'.format(view))
+ opt = fb.evaluateBooleanExpression('[UIView instancesRespondToSelector:@selector(_autolayoutTraceRecursively:)]')
35
+ traceCall = '_autolayoutTraceRecursively:1' if opt else '_autolayoutTrace'
36
+ print fb.describeObject('[{} {}]'.format(view, traceCall))
37
38
39
def setBorderOnAmbiguousViewRecursive(view, width, color):
0 commit comments