标签: xcode string swift sprite-kit escaping
我有一个简单但烦人的问题。我有以下SKLabelNode,例如:
Label.text = "click on bob the button"
但我想做的是:
Label.text = "click on "bob" the button"
但它不会让我在双引号内加双引号。有什么方法吗?
答案 0 :(得分:2)
你只需要在它之前添加\,就像这样:
\
Label.text = "click on \"bob\" the button"