I'd like to write an app-store-approvable app for the iPhone OS which uses libffi. Is this allowed? I am capable of rewriting all of the parts that use it with things like NSInvocation without too much trouble, but would prefer libffi. So my question is: would apps that use libffi be rejected from the app store?

link|improve this question

Question for the curious: What does libffi allow you to do that you can't already do in Objective-C? (In other words, why do you think you need it?) – Dave DeLong Apr 10 '10 at 17:02
Well I think libffi is faster, as it doesn't have the overhead of objc calls. Really esoteric I suppose. – Jared Pochtar Apr 10 '10 at 18:14
actually, I just remembered: calling c functions with the objc stuff is basically relegated to creating a singleton with methods for every possible c function, which (while automated) still seems like a hack, compared to libffi – Jared Pochtar Apr 10 '10 at 18:43
Be careful that you are not optimizing prematurely, as Objective-C messages are not as expensive as you would think: mikeash.com/pyblog/… – Brad Larson Apr 11 '10 at 5:48
feedback

1 Answer

up vote 2 down vote accepted

Apple approval is not guaranteed or denied by anything. It's entirely up to them.

link|improve this answer
Edited the question: would using libffi guarantee rejection – Jared Pochtar Apr 10 '10 at 16:52
1  
Answer stays the same, nothing guarantees acceptance or rejections. – Josh K Apr 10 '10 at 17:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.