现在的位置: 首页 > 综合 > 正文

IOS检测版本更新(***为app id)

2018年02月02日 ⁄ 综合 ⁄ 共 1205字 ⁄ 字号 评论关闭
/////////////////////测试版本更新
-(void)GetUpdate
{
    NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary];
    NSString *nowVersion = [infoDict objectForKey:@"CFBundleVersion"];
    
    NSURL *url = [NSURL URLWithString:@"http://itunes.apple.com/lookup?id=6224939"];//
    NSString * file =  [NSString stringWithContentsOfURL:url];
    file= ;
    if(file !=nil)
    {
        int count= [[g_json GetValueWithJsonKey:file key:@"resultCount"]intValue];
        if(count>0)
        {
            file = ;
            NSString *newVersion = [g_json GetValueWithJsonKey:file key:@"version"];
            if([nowVersion isEqualToString:newVersion]==NO)
            {
                [self performSelectorOnMainThread:@selector(AlertNewVersion:) withObject:nil waitUntilDone:NO];
                
                
            }
        }
        
    }
    
}

-(void)AlertNewVersion:(id)sender
{
    UIAlertView *alertNewVer = [[UIAlertView alloc]initWithTitle:nil message:@"版本有更新" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"更新", nil];
    [alertNewVer show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if(buttonIndex==1)
    {
        NSURL *url = [NSURL URLWithString:@"https://itunes.apple.com/us/app/xg-ke-hui/id622493449?ls=1&mt=8"];
        [[UIApplication sharedApplication]openURL:url];
    }
}

////////////////////////////////

抱歉!评论已关闭.