I've just finished debugging a particularly painful problem where xcode would hang/crash during a compile, and then later when I opened a particular file (once I identified which file) At one point, it was generating 55k+ errors.
@interface someviewcontroller: UITableViewController {
someeditviewcontroller *editView;
-(classObjectName*) addRecord;
-void)remove(classObjectName*)record;
}
^^^ missing the ( before the void on the remove
THis is not so much a question, but I'm curious as to why this caused a complete meltdown of both IDE and compiler.