Okay, so I'm fairly new to Xcode and am not at all familiar with debugging. I've spent a few days creating a neat little application. Everything was working perfectly, and I decided to run one final Simulation before calling it a day. This is when my headache began:
Thread 1: signal SIGABRT
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
I began looking over my code when I noticed one of the AppDelegate files out of the folder at at the bottom of the Project Navigator. I placed it back in the folder and ran the Simulator again. Same exception thrown. (I don't remember which delegate file it was, this happened hours ago)
All Output:
2012-06-02 04:54:14.901 App Name[438:f803] ***Terminating app due to uncaught exception 'NSUnkownKeyException', reason: '[<UIApplication 0x687b3d0> setValue:forUndefinedKey:]: this class is not key value coding-complaint for the key _slider.'
Can someone please help me?
I'm thinking the files have lost communication between each other somehow.
Does Xcode unreference the file because its location changed?