I read several articles about this and I just want to understand if I understand it correctly:
Apple will reject your application if you use a private API ...
What is the main difference between a "Private API" and a "non-private API?"
Are “non-private” APIs only APIs provided and verified by Apple?
Isn't the API just a way to interact with the Framework, but is the Framework just a collection of encapsulated classes / headers that people can use for trivial purposes?
Does this mean that I cannot reuse any code (except Apple) in general in my application?
If this is true, whenever a programmer makes his own classes and methods, doesn't he technically develop a mini-Framework just for his specific purpose? So does this mean that he uses his own private API?
What is the difference between using other classes and methods next to my classes / methods, how can they even tell the difference and why would this be a problem?
My understanding of this sounds absurd and I don't believe that I understand what a "private API" is. I read that it should protect against any changes in the API that could make your application dysfunctional. Does this mean that the APIs are linked at runtime (as opposed to compile time) and can be automatically updated without your knowledge or anything else? (You see, I initially thought of APIs / frameworks as being set to stone whenever you compile, maybe this is where I am wrong)
Can anyone help me out? I am really confused by this policy. Thank!
private api ios iphone frameworks
giant91 Jul 10 '13 at 20:25 2013-07-10 20:25
source share