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.
您最喜欢NSArray使用 LLDB 打印内容的方式是什么?
NSArray
一个python脚本?内联for循环?一个Objective-C方法调用?
我知道按索引打印对象很容易。我想一次打印所有对象。
NSArray 上的 description 方法遍历数组中的对象并对它们进行描述。无需发明任何东西:
po [fooArray description]
你使用的是什么版本的 Xcode/LLDB?
在刚刚发布的 4.6 版本中,您应该可以在 Xcode 中展开 NSArray 并显示内容。在命令行,做
帧变量myArray --show-types -d run --ptr-depth 1
也应该工作。