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);
You need to create the string first.
NSMutableString *teststring = [[NSMutableString alloc]init]; [teststring appendString:@"hey"]; NSLog(teststring);
Now, it will print.