基礎指令篇:
print
print就是把物件內容給印出來,和 C 中的 printf,Object-C的 NSLog 差不多。
在 Console 欄中打入
單除輸出值
輸出值+type+reference name + 記憶體 address
可以在 Debug 階段的時候,就去修改變數的 value 讓你不用一直來回運行(超方便的!)
另外可以在 Xocde 的 Show the BreakPoint Navigator 中的左下方(看下圖)
當加入 Exception Breakpoint 後程式例外拋出時,會直接帶你到原因發生的那行~
(When an exception is thrown, Xcode will take you to the line of code that caused it. )