I have a NSDictionary with the following values
"key1" = "abc\ndef"
"key2" = "1234568"
Get value from dictionary
NSString *myString = [myDictionary objectForKey:@"key1"];
If I output "myString" in the debugger I get
abc
def
So how do I get the value from the dictionary so that "myString" will output
abc\ndef
just like it is in the dictionary?
Thanks!