iPhone — is it possible to inspect the frame of a UIView in the Xcode debugger?

前端 未结 12 590
执念已碎
执念已碎 2021-02-02 08:18

When the debugger is stopped at a breakpoint, I can\'t find the frame of any of my UIViews in there.

Is it possible to do this?

EDIT: starting a bounty due to th

12条回答
  •  无人及你
    2021-02-02 08:20

    po [[[[UIApplication sharedApplication]windows] objectAtIndex:0] recursiveDescription]
    

    will print out the entire view heirachy but only seems to work in gdb and not llvm

提交回复
热议问题