一个跟AppStore交互的工具类

1.这是AppStoreHelper.h

//
//  AppStoreHelper.h
//  018_跳转AppStore
//
//  Created by ZYN on 16/3/19.
//  Copyright © 2016年 Yongneng Zheng. All rights reserved.
//  跟AppStore交互的一个类


#import <UIKit/UIKit.h>

/** 检查完成时*/
typedef void(^checkVersionCompletedBlock)(BOOL isNeddUpdate , NSString *updateContent);
/** 网络请求数据失败时*/
typedef void(^FailBlock) (NSError *error);

@interface AppStoreHelper : NSObject

/**
 *  手动检查版本
 *
 *  @param AppStoreID     商店ID
 *  @param completedBlock 检查完成
 *  @param failBlock      检查失败
 */
+ (void)checkVersionWithAppStoreID:(NSString *)AppStoreID Completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock;

/**
 *  自动检查
 *
 *  @param AppStoreID     商店ID
 *  @param seconds        自动检查间隔(秒)
 *  @param completedBlock 检查完成
 *  @param failBlock      检查失败
 */
+ (void)checkVersionAutoWithAppStoreID:(NSString *)AppStoreID CheckTimeInterval:(NSInteger)seconds completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock;

/**
 *  跳转到苹果商店下载页面
 *
 *  @param AppStoreID
 */
+ (void)intentAppStoreDownLoad:(NSString *)AppStoreID;

/**
 *  跳转到苹果商店评论页面
 *
 *  @param AppStoreID
 */
+ (void)intentAppStoreComments:(NSString *)AppStoreID;

@end

2.这是AppStoreHelper.m

//
//  AppStoreHelper.m
//  018_跳转AppStore
//
//  Created by ZYN on 16/3/19.
//  Copyright © 2016年 Yongneng Zheng. All rights reserved.
//

#import "AppStoreHelper.h"

@implementation AppStoreHelper


+ (void)checkVersionAuto:(BOOL)autoCheck apptoreID:(NSString *)appStoreID checkTimeInterval:(NSInteger)seconds completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock{
    
    BOOL isCanCheck = NO;
    long long timeInterval = [NSDate date].timeIntervalSince1970;
    NSString *time = [[NSUserDefaults standardUserDefaults] objectForKey:@"checkVersionTime"];
    if (!time) {
       //保存当前的时间戳
        [[NSUserDefaults standardUserDefaults] setObject:@(timeInterval) forKey:@"checkVersionTime"];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }else{
        if (autoCheck) {//自动检查时间
            if (timeInterval >= [time longLongValue] + seconds) {
                isCanCheck = YES;
                //保存当前的时间戳
                [[NSUserDefaults standardUserDefaults] setObject:@(timeInterval) forKey:@"checkVersionTime"];
                [[NSUserDefaults standardUserDefaults] synchronize];
            } ;
        }else{
            isCanCheck = YES;
        }
    }
    
    //不需要检查
    if (!isCanCheck) return;
    
    
    [self checkVersionWithRequestHttp:autoCheck apptoreID:appStoreID checkTimeInterval:timeInterval completion:completedBlock fail:failBlock];
    

}
/**
 * 请求网络数据 进行判断    (目前是用Appstore的版本信息,也可以改为自己服务器的信息)
 */
+ (void)checkVersionWithRequestHttp:(BOOL)autoCheck apptoreID:(NSString *)appStoreID checkTimeInterval:(long long)seconds completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock{
    NSString *currentVersion = [self.class getCurrentVersion];
    //请求AppStore获取版本和版本提示信息
    NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:@"http://itunes.apple.com/lookup?id=%@",appStoreID]];
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];
    NSURLSessionDataTask *dataTask = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *  data, NSURLResponse *  response, NSError *  error) {
        
        if (error) {
            if (failBlock) {
                failBlock(error);
            }
            return;
        }
        
        NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error];
        NSArray *infoArray = [dic objectForKey:@"results"];
        
        if ([infoArray isKindOfClass:[NSArray class]] && [infoArray count]>0) {
            
            //商店的版本号
            NSDictionary *releaseInfo = [infoArray objectAtIndex:0];
            NSString *appstoreVersion = [releaseInfo objectForKey:@"version"];
            
            BOOL isNeedUpdate = [self.class checkVersionIsNeedUpdateClientV:currentVersion serverV:appstoreVersion];
            if (isNeedUpdate) {
                dispatch_async(dispatch_get_main_queue(), ^{
                    if (completedBlock) {
                        completedBlock(YES,releaseInfo[@"releaseNotes"]);
                    }
                });
            }else{
                //一般 只有不是 自动检查 才会 提示 当前是 最新版本
                if (!autoCheck) {
                    if (completedBlock) {
                        completedBlock(NO,@"当前是最新版本啦~");
                    }
                };
                
            };
        }
    }];
    //开始请求
    [dataTask resume];
    
}

+ (void)checkVersionWithAppStoreID:(NSString *)AppStoreID Completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock{
    
    return [self.class checkVersionAuto:NO apptoreID:AppStoreID checkTimeInterval:0 completion:completedBlock fail:failBlock];
}

+(void)checkVersionAutoWithAppStoreID:(NSString *)AppStoreID CheckTimeInterval:(NSInteger)seconds completion:(checkVersionCompletedBlock)completedBlock fail:(FailBlock)failBlock{

    return [self.class checkVersionAuto:YES apptoreID:AppStoreID checkTimeInterval:seconds completion:completedBlock fail:failBlock];
}

/**
 *  跳转到苹果商店下载页面
 *
 *  @param AppStoreID
 */
+ (void)intentAppStoreDownLoad:(NSString *)AppStoreID{

    //苹果商店下载页面
    NSString*str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@",AppStoreID];
    
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:str]];

}
/**
 *  跳转苹果商店评论
 *
 *  @param AppStoreID
 */
+ (void)intentAppStoreComments:(NSString *)AppStoreID{
    
    NSString*str = [NSString stringWithFormat:
                    @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8",AppStoreID];
    
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:str]];

}


/**
 *  判断是否需要更新
 *
 *  @param clientVer 当前版本号
 *  @param serverVer 服务端的版本号
 *
 *  @return YES:需要更新 NO:不需要更新
 */
+ (BOOL)checkVersionIsNeedUpdateClientV:(NSString *)clientVer
                                serverV:(NSString *)serverVer
{
   
    NSArray *clientArray = [clientVer componentsSeparatedByString:@"."];
    NSArray *serverArray = [serverVer componentsSeparatedByString:@"."];
    NSInteger count =
    ([clientArray count] > [serverArray count]) ? [clientArray count] : [serverArray count];
    
    for (int i = 0; i < count; i++) {
        NSString *clientString = i < [clientArray count] ? [clientArray objectAtIndex:i] : @"0";
        NSString *serverString = i < [serverArray count] ? [serverArray objectAtIndex:i] : @"0";
        if ([clientString intValue] < [serverString intValue]) {
            return YES;
        }else if ([clientString intValue] > [serverString intValue]){
            return NO;
        }
    }
    return NO;
}

/**
 *  获取当前的版本号
 *
 *  @return 版本号  1.0.0
 */
+ (NSString *)getCurrentVersion{

    return [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
    
};

@end

说明一下: 网络请求用的是NSURLSession是iOS7以上才有的。

3.用例:
(1)AppDelegate.m

- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  
    [AppStoreHelper checkVersionAutoWithAppStoreID:@"444934666" CheckTimeInterval:10 completion:^(BOOL isNeddUpdate, NSString *updateContent) {
        if (isNeddUpdate) {
            [[[UIAlertView alloc]initWithTitle:@"版本更新" message:[NSString stringWithFormat:@"更新内容:\n%@", updateContent] delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"更新", nil] show];
        }else{
            [[[UIAlertView alloc]initWithTitle:@"提示" message:updateContent delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
        }
    } fail:^(NSError *error) {
        [[[UIAlertView alloc]initWithTitle:@"提示" message:@"很遗憾检查失败哦~" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
    }];
}

(2)ViewController.m

- (IBAction)checkVersion:(id)sender {
    
    [AppStoreHelper checkVersionWithAppStoreID:AppStoreID2 Completion:^(BOOL isNeddUpdate, NSString *updateContent) {
        if (isNeddUpdate) {
            [[[UIAlertView alloc]initWithTitle:@"版本更新" message:[NSString stringWithFormat:@"更新内容:\n%@", updateContent] delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"更新", nil] show];
        }else{
            [[[UIAlertView alloc]initWithTitle:@"提示" message:updateContent delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
        }
    } fail:^(NSError *error) {
        [[[UIAlertView alloc]initWithTitle:@"提示" message:@"很遗憾检查失败哦~" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
    }];
}
#pragma mark - UIAlertViewDelegate
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    
    if (buttonIndex == 1) {
        [AppStoreHelper intentAppStoreDownLoad:AppStoreID2];
    }

}
- (IBAction)Intent:(id)sender {
    
    //[[[UIAlertView alloc]initWithTitle:nil message:nil delegate:nil cancelButtonTitle:@"残忍拒绝!" otherButtonTitles:@"给个好评啦~",@"我要吐槽~",nil]show];
    
    [AppStoreHelper intentAppStoreComments:AppStoreID2];
    
    
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,121评论 29 470
  • iOS开发系列--网络开发 概览 大部分应用程序都或多或少会牵扯到网络开发,例如说新浪微博、微信等,这些应用本身可...
    lichengjin阅读 3,637评论 2 7
  • 1,NSObject中description属性的意义,它可以重写吗?答案:每当 NSLog(@"")函数中出现 ...
    eightzg阅读 4,131评论 2 19
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 繁忙的八月谢天谢地快过完了 备忘录显示上次见面是四月中 手里的这支圆珠笔笔头里的芯在前几天摔下桌而失踪了 下午四...
    sogsong阅读 287评论 0 0