Quote:
Originally Posted by ianian
I'm no expert (at all) but I've found that this will happen if you try to put it into a string in the wrong way, for example:
Code:
NSLog([NSString stringWithFormat:@"%@", [shotList count]]);
Will crash with no error.
Code:
NSLog([NSString stringWithFormat:@"%i", [shotList count]]);
Will work a charm
Hope that helps,
Ian
|
Same problem, looked for hours and could not find it or logically explain the crash.
But this one solved it !
Thanx ianian!