Reputation: 265
How to enable Assertions in objective?
Assertions
I have added a third party library which has some Assertions. But it does not work. I think Assertions are disabled. So I want enable it.
Upvotes: 0
Views: 332
Reputation: 107141
You need to use NSAssert for the assertions.
The NSAssertions are disabled if the NS_BLOCK_ASSERTIONS is specified.
NSAssertions
NS_BLOCK_ASSERTIONS
You can use the NSAssert like:
NSAssert
NSAssert(count != 0, @"Count should be greater than zero");
Upvotes: 2