Is there any documentation saying that when the application on Appstore is updated a push notification is send by Appstore itself to user about the update ?
Is there any documentation saying that when the application on Appstore is updated a
Share
You can do that with Search API. In your app , after launching , check to see what is the latest version of your app on the AppStore. Like this:
I used JSONKit for this.. you can use any library that you like to parse the JSON retrieved by Apple.
Note: You can use this to notify the user that there is an update WHEN he opens the app. If you want something that tells the user as soon as the update is live , you need push notifications.
Hope this helps.
Cheers!