2015-10-16 21:02:56.099 KndCRMv2[4616:288769] ssss{ node
"title" : "有新版本,請更新", url
"vf" : "0", spa
"resCode" : "200", orm
"newUrl" : "https://c.kingnode.com/pool/1416798083104/1442821465426.plist" string
} it
else if (buttonIndex ==1 ) io
{ service
upgradeApp(newUrl, DEFINE_UPDATA_URL); 升級
} vi
#define DEFINE_UPDATA_URL [NSString stringWithFormat:@"https://%@",SERVER_HOST]
iOS代碼
//版本升級
CG_INLINE void upgradeApp(NSString *absolutePath, NSString *preURL)
{
if (absolutePath.length>0) {
if (absolutePath && [absolutePath rangeOfString:@"http"].location == 0) {
NSString *strUrl=[NSString stringWithFormat:@"itms-services://?action=download-manifest&url=%@",absolutePath];
NSURL* url = [NSURL URLWithString:strUrl];
[[UIApplication sharedApplication] openURL:url];
}
else
{
NSString *strUrl=[NSString stringWithFormat:@"itms-services://?action=download-manifest&url=%@%@",preURL,absolutePath];
NSURL* url = [NSURL URLWithString:strUrl];
[[UIApplication sharedApplication] openURL:url];
}
}
}