I get the error message "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 gets about a thousand errors above when I run this:
NSMutableString* urlCopy = [[NSMutableString alloc] initWithString:url];
and mouse over the urlCopy variable in the debugger. Is this my version of Xcode? What the hell is going on? I am running 3.2.4 64 bit. I have a complete loss to explain this, and I cannot create a single String type without this problem. I wrote programs where this is the only line in the program, and it still creates this error. Please, help!
source share