獲取appstore應(yīng)用版本號
? ? WS(ws);
? ? ddownStr = @"http://itunes.apple.com/lookup?id=********";
? ? [self defaultRequestwithURL:ddownStr withParameters:nil withMethod:kPOST withBlock:^(NSDictionary *dict, NSError *error) {
? ? ? ? NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
? ? ? ? NSString *currentVersion = infoDic[@"CFBundleShortVersionString"];
? ? ? ? if ([dict objectForKey:@"results"]) {
? ? ? ? ? ? NSArray *tempArr = [dict objectForKey:@"results"];
? ? ? ? ? ? if (tempArr.count > 0) {
? ? ? ? ? ? ? ? NSDictionary *tempDic = [tempArr objectAtIndex:0];
? ? ? ? ? ? ? ? if ([tempDic objectForKey:@"version"]) {
? ? ? ? ? ? ? ? ? ? NSString *verstring = [NSString stringWithFormat:@"%@",[tempDic objectForKey:@"version"]];
? ? ? ? ? ? ? ? ? ? //獲取當(dāng)前版本號
? ? ? ? ? ? ? ? ? ? NSInteger currentVerRR =
? ? ? ? ? ? ? ? ? ? [[(NSMutableString *)currentVersion stringByReplacingOccurrencesOfString:@"." withString:@""] intValue];
? ? ? ? ? ? ? ? ? ? //獲取最新VV
? ? ? ? ? ? ? ? ? ? NSInteger cNewVerRR =
? ? ? ? ? ? ? ? ? ? [[(NSMutableString *)verstring stringByReplacingOccurrencesOfString:@"." withString:@""] intValue];
? ? ? ? ? ? ? ? ? ? if (cNewVerRR > currentVerRR) {
? ? ? ? ? ? ? ? ? ? ? ? //邏輯判斷
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? }];