i\'m an absolute newbie with objective-c
with this code
NSMutableString *teststring; [teststring appendString:@\"hey\"]; NSLog(teststring); >
NSMutableString *teststring; [teststring appendString:@\"hey\"]; NSLog(teststring);
Change first line to
NSMutableString *teststring = [NSMutableString string];