I'm getting the error "Assertion failed: (cls), function getName, file /SourceCache/objc4_Sim/objc4-427.1.1/runtime/objc-runtime-new.m, line 3939." whenever I run the following code.
NSLog(@"Hello: %@\n", [NSMutableString stringWithString:@"Whatever"]);
It also get about a thousand of the above error whenever I run this:
NSMutableString* urlCopy = [[NSMutableString alloc] initWithString:url];
and mouse over the urlCopy variable it in the debugger. Is it my version of XCode? What the hell is going on? I'm running 3.2.4 64-bit. I'm at a complete loss to explain this, and I can't seem to create any sort of String without this problem. I've written programs where this is the only line in the program, and it still creates this error. Please help!