美文网首页
各种调试技巧

各种调试技巧

作者: 下雨之後 | 来源:发表于2016-10-13 09:40 被阅读8次
    //DEBUG 模式下打印日志,当前行
    #ifdef DEBUG
    # define MYLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
    #else
    # define MYLog(...)
    #endif
    
    • 僵尸对象
    僵尸对象.png
    • Xcode视图调试
    Xcode视图调试.png
    • 异常断点
      快速定位到错误所在位置
    异常断点

    参考:
    http://www.cnblogs.com/daiweilai/p/4421340.html#nslog
    http://ios.jobbole.com/90574/

    相关文章

      网友评论

          本文标题:各种调试技巧

          本文链接:https://www.haomeiwen.com/subject/zfbiyttx.html