Quote:
Originally Posted by foo357
|
No this isn't a private API. What they mean by private API is those classes that are deeper in the classes, that Apple does not guarantee to always be there, or be the same. Since they are private Apple can feel ok if they change its api, because if you just use the public apis, those are the ones that Apple will not change.
Basically when you make your own apis, there are methods that you want clients to be able to call, but there are other methods that you create that are within your library that you yourself call and don't expose to the outside world.
So the Google APIs are actually considered public apis. They are just objective c classes that simplify calling the Google Web Services. It basically handles the URL calls and retrieving the feed and converting them into object-c classes automatically for you.
Hope that helps to clear things up.
Mark