Anyone known if exist some way to check if exist one update available on App Store??
I want notify to user the new updates on my application begins...
Thanks
For that, open Google Play Store on your phone. Then, tap on the three-bar icon at the top-left side. Select My apps & games from it. You will see the available app updates listed under the Updates section.
Open the App Store. Tap your profile icon at the top of the screen. Scroll to see pending updates and release notes. Tap Update next to an app to only update that app, or tap Update All.
If your iPhone apps won't update, make sure that you're connected to Wi-Fi and logged into your Apple ID. You can also turn automatic app updates off through the Settings app.
You can easily ask the App Store to return your application info:
e.g. https://itunes.apple.com/lookup?id=441252681
In the json response, the "info"
field is what you're looking for, and you get it updated for free!
See the official documentation here.
Just use ATAppUpdater, it is 1 line, thread-safe and fast. It also have delegate methods if you would like to track user action. Here is an example:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[ATAppUpdater sharedUpdater] showUpdateWithConfirmation]; // 1 line of code
/////////////////////// OR ///////////////////////
[[ATAppUpdater sharedUpdater] showUpdateWithForce]; // 1 line of code
return YES;
}
Delegate methods:
- (void)appUpdaterDidShowUpdateDialog;
- (void)appUpdaterUserDidLaunchAppStore;
- (void)appUpdaterUserDidCancel;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With