拿走即用之版本更新提醒(OC版)

版本更新提醒

  • 每當(dāng)版本更新后,都會有一個提醒用戶更新版本的需求,下面這段代碼是為了應(yīng)對這種需求編寫的一個類

使用條件:

  • 用到了拿走即用之a(chǎn)fn封裝(OC版)(代碼在本人的簡書中)中的NetworkTools這個類

圖片展示

版本提醒.png

代碼

  • .h文件
#import <Foundation/Foundation.h>

@interface VersionUpdateAlert : NSObject

// 間隔多少次使用河质,再次出現(xiàn)彈框提醒趟脂,默認(rèn)20
@property (nonatomic, assign) NSInteger interCount;

+ (instancetype)shareVersionUpdateAlert;

/**
 * appID:appleID
 * VC:alertView需要一個控制器引出励稳,一般為設(shè)為rootViewController的那個控制器
 */

- (void)checkAndShowWithAppID:(NSString *)appID andController:(UIViewController *)VC;

@end
  • .m文件
#import "VersionUpdateAlert.h"
#import "NetworkTools.h"

@implementation VersionUpdateAlert

+ (instancetype)shareVersionUpdateAlert
{
    static VersionUpdateAlert *instance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[VersionUpdateAlert alloc] init];
    });
    return instance;
}

- (void)checkAndShowWithAppID:(NSString *)appID andController:(UIViewController *)VC
{
    NSString *urlString = [NSString stringWithFormat:@"http://itunes.apple.com/cn/lookup?id=%@",appID];
    [[NetworkTools shareNetworkTools] requestWithMethod:get andUrlString:urlString andParameters:nil andFinished:^(id response, NSError *error) {
        if (error == nil) {
            NSArray *array = response[@"results"];
            NSDictionary *dict = [array lastObject];
            NSLog(@"當(dāng)前版本為:%@", dict[@"version"]);
            // 獲取info的字典
            NSDictionary* infoDict = [NSBundle mainBundle].infoDictionary;
            // 版本號保存在本地
            NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
            NSString* appVersion = infoDict[@"CFBundleShortVersionString"];
            NSString *versionString = [userDefaults objectForKey:@"versionString"];
            if (versionString == nil) {
                [userDefaults setObject:appVersion forKey:@"versionString"];
            }
            //當(dāng)版本更新后重置interCount
            if (![[userDefaults objectForKey:@"versionString"] isEqualToString:appVersion]) {
                [userDefaults setObject:@"0" forKey:@"interCount"];
                [userDefaults setObject:appVersion forKey:@"versionString"];
            }
            if ([dict[@"version"] compare:appVersion] == NSOrderedDescending) {
                
                NSNumber *interCount = [userDefaults objectForKey:@"interCount"];
                if (interCount == nil) {
                    [self alertShowWithAppID:appID andController:VC];
                }
                if ([interCount integerValue]%(self.interCount ? self.interCount : 20) == 0) {
                    [self alertShowWithAppID:appID andController:VC];
                }
                NSInteger integerInterCount = [interCount integerValue];
                integerInterCount++;
                NSNumber *numberInterCount = [NSNumber numberWithInteger:integerInterCount];
                [userDefaults setObject:numberInterCount forKey:@"interCount"];
            }
        }
    }];
}

//彈出的alertView
- (void)alertShowWithAppID:(NSString *)appID andController:(UIViewController *)VC
{
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"版本更新提醒" message:@"更新的內(nèi)容,更全面的小說凳谦,更佳的體驗(yàn),快來更新吧" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *installAction = [UIAlertAction actionWithTitle:@"安裝" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        [self openAppaleShopWithAppID:appID];
    }];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil];
    [alertController addAction:installAction];
    [alertController addAction:cancelAction];
    [VC presentViewController:alertController animated:YES completion:nil];
}

//打開appStore
- (void)openAppaleShopWithAppID:(NSString *)appID
{
    NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@",appID];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}

@end

使用

  • 在appdelegate finish----方法中調(diào)用- (void)checkAndShowWithAppID:(NSString *)appID andController:(UIViewController *)VC;方法
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末衡未,一起剝皮案震驚了整個濱河市晾蜘,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌眠屎,老刑警劉巖剔交,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異改衩,居然都是意外死亡岖常,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進(jìn)店門葫督,熙熙樓的掌柜王于貴愁眉苦臉地迎上來竭鞍,“玉大人,你說我怎么就攤上這事橄镜≠丝欤” “怎么了?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵洽胶,是天一觀的道長晒夹。 經(jīng)常有香客問我,道長姊氓,這世上最難降的妖魔是什么丐怯? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮翔横,結(jié)果婚禮上读跷,老公的妹妹穿的比我還像新娘。我一直安慰自己禾唁,他們只是感情好效览,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著荡短,像睡著了一般丐枉。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上肢预,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天矛洞,我揣著相機(jī)與錄音,去河邊找鬼。 笑死沼本,一個胖子當(dāng)著我的面吹牛噩峦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抽兆,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼识补,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了辫红?” 一聲冷哼從身側(cè)響起凭涂,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎贴妻,沒想到半個月后切油,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡名惩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年澎胡,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片娩鹉。...
    茶點(diǎn)故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡攻谁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出弯予,到底是詐尸還是另有隱情戚宦,我是刑警寧澤,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布锈嫩,位于F島的核電站受楼,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏祠挫。R本人自食惡果不足惜那槽,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望等舔。 院中可真熱鬧,春花似錦糟趾、人聲如沸慌植。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蝶柿。三九已至,卻和暖如春非驮,著一層夾襖步出監(jiān)牢的瞬間交汤,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留芙扎,地道東北人星岗。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像戒洼,于是被迫代替她去往敵國和親俏橘。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容