Creating a JSON Store For iPhone

前端 未结 3 1261
迷失自我
迷失自我 2020-11-27 16:22

We have loads of apps where we fetch data from remote web services as JSON and then use a parser to translate that into a Core-Data model.

For one of our app

3条回答
  •  粉色の甜心
    2020-11-27 16:51

    JSON Framework is one. It'll turn your JSON into native NSDictionary and NSArray objects. I don't know anything about its performance on a large document like that, but lots of people use it and like it. It's not the only JSON library for iOS, but it's a popular one.

提交回复
热议问题