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.
有没有办法可以避免 Objective-C 中文字字符串中的转义序列?
例如,在 C# 中,我可以为字符串添加前缀@并正常键入字符串,例如:@"C:\Users",而不使用双反斜杠"C:\\Users"
@
@"C:\Users"
"C:\\Users"
有没有办法做到这一点?
在 Objective-C 中没有办法做到这一点。像这样的构造会@"string"生成NSString从 plain 构建的对象"string"。据我所知,你无法避免在 C 语言中转义。
@"string"
NSString
"string"