tags:

views:

46

answers:

1

Is it possible to check for an app update within your app, such that when an update is available, your app will prompt the user to download the update on startup?

+3  A: 

Firstly, accept some answers. You're less likely to receive answers to your questions if you don't accept answers and contribute back to the community that is spending their free time to help you.

And now because I'm in a good mood, I'll answer your question.

Nope, App Updates and update alerts are all handled by the App Store app and iTunes on the desktop.

You could query a webservice from within your app that will return what the current shipping version is (which you could update when the new update is released). But you shouldn't limit the functioning of your app when an update is available or force the user to upgrade because Apple will reject your app for this behaviour.

Jasarien