3
votes
1answer
214 views

ShareKit assert: “ShareKit has been refactored to be used as Xcode subproject.”

I'm having trouble getting ShareKit 2.0 to work in my app. I've followed the latest installation instructions, creating a submodule for ShareKit, and tried cleaning and rebuilding, deleting and ...
1
vote
2answers
197 views

Using SenTest to test an assertion

I have code in method which asserts( ) that a parameter falls within a given range. I'd like to test illegal parameters using a SenTest test case. My first assumption was that I should use ...
0
votes
1answer
150 views

Assert outside a try/catch in obj-c

Today I think i might have learned something (not sure), i'm not really a obj-c programmer, more the php & java type, but building a iPhone app together with somebody got me this, so hopefully ...
1
vote
3answers
1k views

why using 'assert' in a project? (and why using it so many times)

i was reading through the sample code ListAdder, and there are many asserts right after the variable, or used in almost every method, for example : self.formatter = [[[NSNumberFormatter alloc] init] ...
15
votes
2answers
4k views

NSAssert vs. assert: Which do you use, and when?

I've read two really interesting pieces of advice, recently: In the comments to this StackOverflow answer, @Mike Weller says to leave your asserts on in production code... what's the performance ...
0
votes
3answers
549 views

NSAssert doesn't work

I'm trying to use NSAssert in my code but it doesn't do a thing. In this piece of code, the assertion should fail but doesn't: MSLog(@"cross.obj = %@",[cross obj]); NSAssert([cross ...
5
votes
3answers
3k views

What's the regular way of assertion in C?

I'm using NSAssert macro for Objective-C assertion, and it's the regular way to do this. But it's not work in C functions. What do I should use for this?
4
votes
2answers
2k views

Xcode - Call stack trace on assert?

Right now when one of my asserts is triggered in Xcode, I get the assert message, and a dump of the stack, which is full of numbers that are not very meaningful to me. In order to get a trace of the ...
5
votes
1answer
3k views

NSAssert usage in threads

I'm trying to use NSAssert throughout my iPhone app so that if an unexpected condition occurs, the application fails-fast and crashes with a meaningful message in the crash log. This works fine if ...
0
votes
2answers
270 views

How to write a macro that can take a parameter?

I want to use some NSAssert stuff and other things to enable better debugging in my app. NSAssert wants a string which it prints if the assertion fails. Nice, but useless unless you type a whole bunch ...