I have a label that displays inches. I would like to display the number with the inch symbol (") or quotation mark. Can I do this with an nsstring? Thanks!
Sure, you just need to escape the quotation mark.
NSString *someString = @"This is a quotation mark: ""; NSLog(@"%@", someString );
Output:
This is a quotation mark: "
1.4m articles
1.4m replys
5 comments
57.0k users