美文网首页
XCode8 和iOS10 NSLog不全解决办法

XCode8 和iOS10 NSLog不全解决办法

作者: paradisery | 来源:发表于2016-10-13 11:36 被阅读135次

iOS10在xcode8下真机测试,nalog打印不全,可能是兼容问题,这里贴一个宏,能够打印完全。

#ifdef DEBUG

#define SLog(format, ...) printf("class: <%p %s:(%d) > method: %s \n%s\n", self, [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String] )

#else

#define SLog(format, ...)

#endif

相关文章

网友评论

      本文标题:XCode8 和iOS10 NSLog不全解决办法

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