什么是NSAssert?

断言, 判断是否符合某个特定条件, 符合就继续运行程序, 反之就抛出异常, 后面为自定义错误提示, 也可以使用NSParameterAssert, 在调试上有着很大的方便

int a = 0;

NSAssert(a != 0, @"a不是0, 不能继续运行");

NSParameterAssert(a != 0);

posted @ 2015-12-15 11:48  Rinpe  阅读(160)  评论(0编辑  收藏  举报