在程序开发中,我们需要经常需要实时输出一些运行数据来判断程序是否正确的运行,在IOS开发中,NSLog很像printf和println,会在控制台里面格式化的输出结果。使用NSLog输出,对应不同的对象需要用不同的格式化字符,NSLog的格式如下所示:
- %@
对象 - %d,
%i 整数 - %u
无符整形 - %f
浮点/双字 - %x,
%X 二进制整数 - %o
八进制整数 - %zu
size_t - %p
指针 - %e
浮点/双字 (科学计算) - %g
浮点/双字 - %s
C字符串 - %.*s
Pascal字符串 - %c
字符 - %C
unichar - %lld
64位长整数(long long) - %llu
无符64位长整数 - %Lf
64位双字
Apple对NSLog格式的介绍:
https://developer.apple.com/library/mac/#documentation/cocoa/conceptual/strings/Articles/formatSpecifiers.html
https://developer.apple.com/library/mac/#documentation/cocoa/conceptual/strings/Articles/formatSpecifiers.html
在release版本禁止输出NSLog内容
因为NSLog的输出还是比较消耗系统资源的,而且输出的数据也可能会暴露出App里的保密数据,所以发布正式版时需要把这些输出全部屏蔽掉。
我们可以在发布版本前先把所有NSLog语句注释掉,等以后要调试时,再取消这些注释,这实在是一件无趣而耗时的事!还好,还有更优雅的解决方法,就是在项目的prefix.pch文件里加入下面一段代码,加入后,NSLog就只在Debug下有输出,Release下不输出了。
- #ifndef
__OPTIMIZE__ - #define
NSLog(...) NSLog(__VA_ARGS__) - #else
- #define
NSLog(...) {} - #endif
如我项目里的prefix.pch文件:
- #ifndef
__IPHONE_4_0 - #warning
"This project uses features only available in iOS SDK 4.0 and later." - #endif
-
- #ifdef
__OBJC__ -
#import -
#import -
#import "AppDelegate.h" -
#import "UIViewController+Customized.h" - #endif
-
- #ifndef
__OPTIMIZE__ - #define
NSLog(...) NSLog(__VA_ARGS__) - #else
- #define
NSLog(...) {} - #endif