xCode斷點(diǎn)調(diào)試正常工作中都會遇到洛口,如果遇到循環(huán)次數(shù)較多的情況逼侦,其實(shí)我們可以通過設(shè)置斷點(diǎn)條件來實(shí)現(xiàn):
代碼:
<pre><code>for i in 0...30 { print("索引---\(i)") }
</code></pre>
測試結(jié)果:
<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>