我尝试以下面的方式存储json字符串
NSString * str =@"{"CategoryID":1,"ItemCount":1,"level":1,"Name":"Boots","Description":"Boots descrition","childs":[{"CategoryID":2,"ItemCount":1,"level":2,"Name":"Cold Water","Description":"Cold Water Description","childs":[]}]}]";
我收到了一条错误消息。我知道这是一个非常小的解决方案。 我尝试了很多NSString方法,但我没有得到解决方案。 我将如何存储这个字符串?
提前致谢...
答案 0 :(得分:0)
最后我得到了我的问题的解决方案
我们需要以下面的方式传递字符串。
NSString*str=@{\"CategoryID\":1,\"ItemCount\":1,\"level\":1,\"Name\":\"Boots\",\"Description":\"Boots descrition\",\"childs\"[{\"CategoryID\":2,\"ItemCount\":1,\"level\":2,\"Name\":\"Cold Water\",\"Description\":\"Cold Water Description\",\"childs\":[]}]}];