AWVersionAgent 0.0.1

AWVersionAgent 0.0.1

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2014年12月

未申领 维护。



  • Heyward Fann

目前有如此多的更新检查器使用 UIAlertView 来提示用户升级您的应用,但警报会阻止用户操作。 AWVersionAgent 将在后台检查新版本,并通过本地通知通知用户新版本可用。

使用方法

  1. application:didFinishLaunchingWithOptions: 中添加 [[AWVersionAgent sharedAgent] checkNewVersionForApp:@"your-app-id"]; 以在后台检查新版本。
  2. application:didReceiveLocalNotification: 中添加 [[AWVersionAgent sharedAgent] upgradeAppWithNotification:notification]; 以响应本地通知。
  3. 您可以通过 [[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];
}

许可证

AWVersionAgent 在 MIT 许可证下提供。