Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xcode 中的调试器窗口向您显示当前范围内的局部变量的值(例如,如果您是单步执行)。但是假设我想检查子视图中的属性(例如,一个 UIScrollView 实例/属性,如 self.scrollview.zoomScale)?
我尝试在调试器窗口中的“self”变量下进行目测,但找不到实例化的 UIScrollView。
谢谢。
在调试窗口中尝试以下操作:
po self.scrollview.zoomScale
或者在你的情况下:
p self.scrollview.zoomScale
如果什么都没有,只需NSLog输出 zoomScale 的值。
NSLog