Within my app, how can I make it check if there is an update available in the Mac App Store, and tell the user about this?

As an example, Sparrow does this.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Charcoal Design has an open source component that does that: iVersion. But it requires you to add a file in your server for your application to read. Whenever you update the version, just change the information in your server, and iVersion will show the user that a new version is available.

You could also scrape Apple's servers to read the version of your app, but there is chance that your app may be rejected for doing that.

link|improve this answer
The latest release of iVersion includes a PHP web service to get this info automatically using Apple's official iTunes APIs, so no chance of rejection. – Nick Lockwood Dec 15 '11 at 9:34
feedback

Basically, Sparrow does not need to ask the App Store. It can just compare its bundle string to the newest version on their website.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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