How can we write " in nsstring?
Use the escape character: \
NSString *r = @"\"Rose\"";
You can find additional information about Escape character and String literal.
Escape the double quote with \
NSString *yourString = @"\"Rose\"";
Use the escape character: \
NSString *r = @"\"Rose\"";
You can find additional information about Escape character and String literal.
Escape the double quote with \
NSString *yourString = @"\"Rose\"";