例如:
let array = ["1234","5678"]
这个值数组应该转换为以下字符串 -
"[\"1234\",\"5678\"]"
虽然我在这里找到了答案 - Objective-C - How to convert NSString to escaped JSON string?但它看起来并不干净。有没有更清洁的方法来做到这一点?
我能够得到这个输出 - " ["一个","两个"]"使用
NSJSONSerialization.dataWithJSONObject
但是如何在字符串之间插入反斜杠?