xCode断点调试正常工作中都会遇到,如果遇到循环次数较多的情况,其实我们可以通过设置断点条件来实现:
代码:
<pre><code>for i in 0...30 { print("索引---\(i)") }
</code></pre>
测试结果:
<pre><code>(Int) $R0 = 21 FlyElephant 索引---21 (Int) $R1 = 22 FlyElephant 索引---22 (Int) $R2 = 23 FlyElephant 索引---23 (Int) $R3 = 24 FlyElephant 索引---24 (Int) $R4 = 25 FlyElephant 索引---25 (Int) $R5 = 26 FlyElephant 索引---26 (Int) $R6 = 27 FlyElephant 索引---27 (Int) $R7 = 28 FlyElephant 索引---28 (Int) $R8 = 29 FlyElephant 索引---29 (Int) $R9 = 30 FlyElephant
</code></pre>