Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将使用 UILabel 在我的应用程序上进行对话,但我不知道如何为其添加 Open & End 报价。
一个能做到的怎么办??
如果你想在你的字符串中打印一个 " 你需要转义它
转义 a"是通过\在它之前添加 a 来完成的
"
\
NSString *string = @"\"Hello\"!";
您可以在NSString. 你需要使用像 -
NSString
NSString *myString = @"quote: \""; self.myLabel.text = @"Your text with quotation: \"";