Is it possible to include a quotation mark as part of an nsstring?

Sure, you just need to escape the quotation mark.

NSString *someString = @"This is a quotation mark: \"";
NSLog(@"%@", someString );

Output:

This is a quotation mark: "

Leave a Comment