#define NSAssert(condition, desc, ...)

只有条件condition满足,才会执行下一个语句,否则输出断言错误。

例如:

NSAssert(1 != 2, @"1怎么会等于2");

当1等于2时,执行该程序就Xcode就会报错

04-30 12:18