Does anyone know of an easy way to add a single backslash (\\) to a NSString in Objective-C? I am trying to have a NSString *temp = @\"\\/Dat
\\
NSString
NSString *temp = @\"\\/Dat
The string @"\\" is a single backslash, @"\\\\" is a double backslash
@"\\"
@"\\\\"