简单类型 / 字符串

// \t Insert a tab.
// \n Insert a newline.
// \r Insert a carriage return.
// \' or ' Insert a single quote.
// \" Insert a double quote.
// \\ Insert a backslash character.

NSString *str = @"She said \"Hello!\" to me.";
//str is "She said "Hello!" to me."