// Objective-C supersedes traditional C char* strings with constant // string objects, using the @ character before the opening ". NSString *string1 = @"Jon 'Maddog' Orwant'"; NSString *string2 = @"\n"; // a "newline" character NSString *string3 = @"Jon \"Maddog\" Orwant"; // literal double quotes |