views:

80

answers:

2

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

+1  A: 

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
+1  A: 

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