我需要打印一个" abc"在@""
我当前的字符串是
[displayLbl setText:@"press stop"];
但我需要:
[displayLbl setText:@"press "stop""];
我该怎么做?
答案 0 :(得分:12)
[displayLbl setText:@"press \"stop\""];
答案 1 :(得分:3)
Roland Keesom的答案当然是正确的。但您也可以考虑使用印刷引号,这通常看起来更好:
[displayLbl setText:@"press “stop”"];
(你只需要在键盘上找到它们( - :)