• iOS开发-NSLog不打印设置 Prefix


    首先在-Prefix.pch,文件里添加如下代码
    1. #ifdef DEBUG
    2. #define NSLog(...) NSLog(__VA_ARGS__)
    3. #define debugMethod() NSLog(@"%s", __func__)
    4. #else
    5. #define NSLog(...)
    6. #define debugMethod()
    7. #endif

      上段代码的意思就是 用宏指令做一个判断,如果DEBUG为真,则编译#ifdef到#endif宏定义,否则编译器就不编译;



      这个DEBUG在哪设置呢,


      在 "Target > Build Settings > Preprocessor Macros > Debug" 里有一个"DEBUG=1"。(默认好像就是)

    8. 设置为Debug模式下,Product-->Scheme-->SchemeEdit Scheme
      (1)设置Build Configuration成Debug时,就可以打印nslog了。
      (2)设置Release,发布app版本的时候就不会打印了,提高了性能
    不要让任何事成为你不去学习的理由
  • 相关阅读:
    Linux kernel device mapper
    草莓网
    openwrt系统源码地址
    ubuntu 安装eclipse for c++
    ubuntu下安装eclipse IDE for C/C++ developers
    Makefile 中:= ?= += =的区别
    core dump
    rtp
    skbuff
    A Neural Algorithm of Artistic Style
  • 原文地址:https://www.cnblogs.com/jgl-blog/p/5110775.html
Copyright © 2020-2023  润新知