#import "ViewController.h"
#import <StoreKit/StoreKit.h>
@interface ViewController ()<SKStoreProductViewControllerDelegate>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    /*
     项目中需要用到app自动更新的功能
     
     iOS程序自动提示更新的实现方案大致分为两种:
     第一种,自己服务器提供一个接口,告知相关app的当前版本,是否需要更新,以及更新的地址等信息 。
     第二种,就是利用苹果的appstore 提供的相关api进行查询更新。【http://blog.csdn.net/davidsph/article/details/8931718】
     
     第二种方法在2015年三月份起苹果公司给出这样的公告“3月起要求关闭所有App内的检查更新功能,苹果App Store将向用户自动提示更新,新提交审核版本如果保留检查更新入口审核时将被拒绝,请各产品团队重点关注。”。所以苹果公司是自己提示,但是这个提示只有一次。我们可以采用第一种方法来实现。
     
     实现步骤:
     1.需要后台给出接口,返回版本号及更新内容,获取版本号
     2.获取当前应用的版本号:
     NSString * versionStr =[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
     3.判断当前版本号与后台的版本号是否相符,是则不提示更新,否,则弹出提示框,显示更新。
        代码演示如下:
     */
    
    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    
    button.frame = CGRectMake(100, 50, 100, 40);
    
    [button setTitle:@"检测版本" forState:UIControlStateNormal];
    
    [button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:button];
    
    
}
/*
    在写UIAlertController的时候,在ViewDidLoad中声明并模态推出的时候出现了一个错误:
    Warning: Attempt to present <UIAlertController: 0x14e6a4fe0> on <ViewController: 0x14e69e4d0> whose view is not in the window hierarchy!
    原因是在presnet的时候viewDidLoad还没有执行完成,只有viewDidLoad执行完成之后,正常使用。在控制器加载的时候,不能使用这个去调用,这样就必须向办法延时才行。由于是Demo,习惯性的直接写在viewDidLoad中,我最后使用一个Button来出发这个动作,就没有以上错误了。
 */
- (void)buttonAction:(UIButton *)sender{
    
    // 后台获取的版本号
    NSString *newVersionStr = [NSString stringWithFormat:@"%@",@"1.1"];
    
    // 当前的版本号
    NSString *nowVersionStr = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
    
    if (![nowVersionStr isEqualToString:newVersionStr]) {
        
        [self showVersionUpdate:newVersionStr];
        
    }

}

- (void)showVersionUpdate:(NSString *)versionStr{
    
    versionStr = [NSString stringWithFormat:@"检测到新版本:%@",versionStr];
    
    // 弹出提示框
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"软件更新提示" message:versionStr preferredStyle:UIAlertControllerStyleAlert];
    
    UIAlertAction *ignoreAction = [UIAlertAction actionWithTitle:@"忽略此版本" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        NSLog(@"ignore");
    }];
    
    [alertController addAction:ignoreAction];
    
    UIAlertAction *updateAction = [UIAlertAction actionWithTitle:@"立即更新" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        
        // 跳转AppStore 的两种方法
//        1.应用外部跳转
//        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1084930772"]];
//        2.应用内部跳转
        [self dumpAppStore];
        
    }];
    
    [alertController addAction:updateAction];
    
    [self presentViewController:alertController animated:YES completion:nil];
    
}
/*
 从iOS6以后苹果提供了在应用内部打开App Store中某一个应用下载页面的方式,提供了一个SKStoreProductViewController的类对该功能进行支持。
 首先,需要导入#import <StoreKit/StoreKit.h>。
 其次,需要遵守<SKStoreProductViewControllerDelegate>这个协议。
 第三,加入以下代码即可。
 */
- (void)dumpAppStore{
    
    SKStoreProductViewController *storeProductViewController = [[SKStoreProductViewController alloc] init];
    storeProductViewController.delegate = self;
    // 加载一个新的视图展示
    [storeProductViewController loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier:@"1084930772"} completionBlock:^(BOOL result, NSError * _Nullable error) {
        // 回调
        if (error) {
            NSLog(@"错误%@",error);
        }else{
            // AS 应用界面
            [self presentViewController:storeProductViewController animated:YES completion:nil];
            // 参考文章 http://blog.csdn.net/addychen/article/details/39555193
        }
        
    }];
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end