Want to know the whole character set whose characters have to be escaped in an Objective-C NSString object in order to be recognized properly, e.g. " has to be escaped as \", as in
NSString *temporaryString = @"That book is dubbed as \"the little book\".";
Is the character set same with the one in C language char * string?
Thanks for your help :D