Basic debugging using logging for iOS apps.& Customizing Process Stack Size

文章目录

  • 前言
  • I 、 DEBUG 宏的应用
    • 1.1 发布模式关闭NSLog
  • II、 NSLog调试技巧
    • 2.1 Where to find NSLog's output
    • 2.2 Improved logging in Objective-C
    • 2.1 Objective-C's boxing capability (`装箱`快速构造数字对象)
    • 2.2 知识补充:装箱和拆箱
  • III 、Customizing Process Stack Size
    • 3.1 Setting The Stack Size to 16MB (0x1000000)
    • 3.2 Setting The Stack Size for an Individual Thread

你可能感兴趣的:(#,iOS开发基础)