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.
我的 UITextfield 中的帖子有问题。任何时候有一个撇号的单词,它都会添加一个反斜杠。
所以我的测试帖子在 NSLog 中说“我认为以 \'s 结尾的单词可能有问题”
它应该是:“我认为以 's 结尾的单词可能有问题”。
听起来像是转义——在某个地方,您的数据正在被转义。问题不在于 UITextField,而在于代码的其他部分。检查正在发送到该字段的字符串,您会发现它已在那里转义。从那里跟踪您的代码。