Conradaroma
Conradaroma

Reputation: 151

is there a way to automatically update iPhone apps?

I am looking for some way to automatically launch the app store on an iPhone from within an app. For example, the user logs in using the app, and the server requires a specific version of the app. Can I open the app store, or grab the upgrade automatically, or does the user need to go through the app store manually?

Thanks in advance, Conrad

Upvotes: 3

Views: 2651

Answers (2)

lucius
lucius

Reputation: 8685

Have you tried [[UIApplication sharedApplication] openURL:@"itms://..."] with the URL for your app?

Upvotes: 0

Franci Penov
Franci Penov

Reputation: 76021

The user needs to go through the AppStore to get the upgrade. The user might choose not to upgrade the app for whatever reason and you can't force update.

Of course, you can navigate to the AppStore page and offer the choice to the user.

Upvotes: 1

Related Questions