I'd like double quotes to appear within the following string so it looks like:
"hi there == "
Here's the code I'm using:
NSMutableString *s = [[NSMutableString alloc] init];
[s appendString:@""""];
[s appendString:@"hi there == ""\n\r"];
Instead I only get:
hi there ==
Any ideas?