如何在目标中启用Assertions
?
我添加了具有某些Assertions
的第三方库。但这行不通。我认为Assertions
已禁用。所以我想启用它。
最佳答案
您需要使用NSAssert作为断言。
如果指定了NSAssertions
,则禁用NS_BLOCK_ASSERTIONS
。
您可以像这样使用NSAssert
:
NSAssert(count != 0, @"Count should be greater than zero");
如何在目标中启用Assertions
?
我添加了具有某些Assertions
的第三方库。但这行不通。我认为Assertions
已禁用。所以我想启用它。
最佳答案
您需要使用NSAssert作为断言。
如果指定了NSAssertions
,则禁用NS_BLOCK_ASSERTIONS
。
您可以像这样使用NSAssert
:
NSAssert(count != 0, @"Count should be greater than zero");