美文网首页
iOS检测App是否需要升级

iOS检测App是否需要升级

作者: 童雨 | 来源:发表于2016-06-16 15:25 被阅读0次
-(void)alertView:(UIAlertView *)alertView
    clickedButtonAtIndex:(NSInteger)buttonIndex
    {
      if(alertView.tag ==
    kVersionNeedUpdateAlertTag) {
        //软件需要更新提醒
        if(buttonIndex == 1) {
          NSURL *url= [NSURL
    URLWithString:[NSString stringWithFormat:@"https://itunes.apple.com/cn/app/wan-zhuan-quan-cheng/id%i?mt=8",iFeverAPPID]];
          [[UIApplication
    sharedApplication]openURL:url];
          /*
           // 打开iTunes 方法二:此方法总是提示“无法连接到itunes”,不推荐使用
           NSString *iTunesLink= @"itms-apps://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftwareUpdate?id=%i&mt=8";
           NSURL *url= [NSURL
    URLWithString:[NSString stringWithFormat:@"itms-apps://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftwareUpdate?id=%i&mt=8",iFeverAPPID]];
           [[UIApplication
    sharedApplication] openURL:url];
           */
        }
      }
    }

相关文章

网友评论

      本文标题:iOS检测App是否需要升级

      本文链接:https://www.haomeiwen.com/subject/ejvmdttx.html