I am trying to debug a crash on my app
all i get is
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
I know its a problem with a fetch from CoreData that is returning nil
.
Now my objective is to see where the crash is it coming from exactly.
I know there is a way to check with Instruments
the exact line of code that causes my code to crash.
Could anyone point me in the right direction on which instrument
would give me that information and some debugging tips when trying to find the line in Analyzer
?