jajo87
jajo87

Reputation: 1388

Can I use YAJL iOS framework?

I want to use YAJL-iOS framework in my iOS app. But I m just concerned if Apple would reject the app since they do not allow external frameworks. Can someone provide some advice on this matter.

Thanks

Upvotes: 0

Views: 441

Answers (1)

Silenteh
Silenteh

Reputation: 516

I can confirm this is not a problem at all. I have few applications out there where I use YAJL-iOS.

The last has been approved around 15 days ago.

If you are referring to the fact that an app cannot use non-public API, it is different from an external framework like YAJL.

Most of the time these libraries are built exclusively on top of iOS functionalities, and just make the life easier for programmers to accomplish common stuff, like parsing JSON.

Others, like Three20, specifically mention that they use non-public API. They also mention though, how to use the whole framework, and therefore disable these calls in order to be approved by Apple.

Upvotes: 1

Related Questions