I need some kind of json string generator for objective-c. Actually I thought there must be something like that but I could not find anything.To be specific, for example I have a json string like:
{"name":"abc","email":"[email protected]","password":"1"}
when I want to store it in objective c, I have to write it like:
@"{\"name\":""\"abc\""",\"email\":""\"[email protected]\""",\"password\":""\"1\"""}"
so it is confusing and hard to implement. Are there any generators or an easy way to implement it. Thanks