• Stars
    star
    123
  • Rank 290,240 (Top 6 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created almost 12 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Check and notify user that new version is available from Local Notification.

AWVersionAgent

There is so many update checker using UIAlertView to notify user to upgrade your app, but the alert will stop user's action. AWVersionAgent will check new version in background and notify user that new version is available from Local Notification.

Usage:

  1. Add [[AWVersionAgent sharedAgent] checkNewVersionForApp:@"your-app-id"]; in application:didFinishLaunchingWithOptions: to check new version in background.
  2. Add [[AWVersionAgent sharedAgent] upgradeAppWithNotification:notification]; in application:didReceiveLocalNotification: to response local notification.
  3. You can enable debug mode by [[AWVersionAgent sharedAgent] setDebug:YES];.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [self.window makeKeyAndVisible];

    [[AWVersionAgent sharedAgent] checkNewVersion];

    return YES;
}

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
    [[AWVersionAgent sharedAgent] upgradeAppWithNotification:notification];
}

License

AWVersionAgent is available under the MIT license.