应用更新通知的文档

时间:2012-07-02 10:29:18

标签: ios app-store apple-push-notifications

是否有任何文档说当Appstore上的应用程序更新时,Appstore本身会向用户发送有关更新的推送通知?

1 个答案:

答案 0 :(得分:9)

您可以使用Search API执行此操作。在您的应用程序中,启动后,请检查AppStore上应用程序的最新版本。像这样:

- (void) checkForUpdates
{
    NSString *jsonUrl = @"http://itunes.apple.com/search?term=yourAppName&entity=software&limit=1";
    NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:jsonUrl]];

    JSONDecoder *jsonKitDecoder = [JSONDecoder decoderWithParseOptions:JKParseOptionNone];
    NSObject *jsonObject = [jsonKitDecoder objectWithData:jsonData error:nil];
    int results = [[jsonObject valueForKey:@"resultCount"] intValue];

    if(results >0) // has results
    { 
        NSArray *results = [jsonObject valueForKey:@"results"];
        for(NSObject *aResult in results) 
        {
            NSString    *appStoreVersion = [aResult valueForKey:@"version"];
            NSString    *localVersion    = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];

            if(![appStoreVersion isEqualToString:localVersion])
            {
                 //there is an update available. Go crazy.
            }
        }
     }
}

我为此使用了JSONKit ..您可以使用任何您喜欢的库来解析Apple检索到的JSON。

注意:您可以使用此选项通知用户打开应用时有更新。如果您希望在更新生效后立即通知用户,则需要推送通知。

希望这有帮助。

干杯!