1

Does anyone know if using YAJL for JSON parsing on iOS is accepted by the AppStore?

dpigera
  • 3,339
  • 5
  • 39
  • 60

2 Answers2

2

Apple doesn't block apps for using specific libraries unless they break the TOS. I have used YAJL in iPhone apps before without any problems.

Mentalikryst
  • 761
  • 4
  • 6
1

I don't see any reason why it wouldn't be. You need to link as a .a not .dylib or include the source in your app.

You might want to look at TouchJSON as well http://github.com/schwa/TouchJSON

Lou Franco
  • 87,846
  • 14
  • 132
  • 192