I am getting a SigAbrt error when trying to run a iOS app in the simulator in xCode. The Debug Console says:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
I understand what the exception tells me, however the place where the error occures is the following line:
class AppDelegate: UIResponder, UIApplicationDelegate {
So as far as I know this is one of the first lines of code that is executed in additions its a class definiton - I have no Idea how this could trigger such a exception.
Let me know if you need more information such as the call stack.
Thanks for your help.