I have a crash on my iPhone App, I have this error :
[724:95876] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull objectForKey:]: unrecognized selector sent to instance 0x1b5970878'
And that's all. I don't know where exactly is the crash. The project I'm on is pretty huge, is there any way to have more details on where is the call of objectForKey on a NSNull ?
Do you have "All exceptions" breakpoint turned on in XCode? If not, go to the breakpoint tab, and in the "+" menu at the bottom left of the tab select Exception breakpoint. By default it should be set to catch all objc and throw exceptions. That way your code will stop exactly where the crash is happening.