码迷,mamicode.com
首页 > 其他好文 > 详细

NSAssert,NSCassert

时间:2014-07-03 16:08:07      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:nsassert

在苹果的SDK中可以看到这两个都是定义的宏

NSAssert 的定义如下:

#define NSAssert(condition, desc, ...)  do {                __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS if (!(condition)) {         [[NSAssertionHandler currentHandler] handleFailureInMethod:_cmd     object:self file:[NSString stringWithUTF8String:__FILE__]         lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; }                   __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS } while(0)
#endif

NSCassert的定义如下:

#define NSCAssert(condition, desc, ...) do {                __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS if (!(condition)) {         [[NSAssertionHandler currentHandler] handleFailureInFunction:[NSString stringWithUTF8String:__PRETTY_FUNCTION__]     file:[NSString stringWithUTF8String:__FILE__]         lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; }                   __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS } while(0)
#endif

小心使用NSAssert,可以看到它的定义中出现了一个self, 有可能在你的block中你会发现你明明没有self的strong引用,但是仍然出现了循环引用。就看看你是否使用了NSAssert,这个宏被展开之后持有了self,那么有可能就会出现引用不释放的问题。

而使用NSCassert,就不会有这样的问题了。因为它定义使用的handleFailureInFunction函数,并没有self引用。


NSAssert,NSCassert,布布扣,bubuko.com

NSAssert,NSCassert

标签:nsassert

原文地址:http://blog.csdn.net/likendsl/article/details/36631401

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!