项目中的请求地址 改变为 https 请求
项目介绍:
XHVersion
1.一行代码检测App更新,无需添加AppId等任何信息
2.支持自定义新版本提示框
3.代码地址:https://github.com/CoderZhuXH/XHVersion
API
/**
* 检测新版本(使用默认提示框)
*/
+(void)checkNewVersion;
/**
* 检测新版本(自定义提示框)
*
* @param newVersion 新版本信息回调
*/
+(void)checkNewVersionAndCustomAlert:(NewVersionBlock)newVersion;
使用方法
导入头文件 #import "XHVersion.h" ,在需要检测新版本的地方调用下面代码
//1.新版本检测(使用默认提示框)
[XHVersion checkNewVersion];
//2.如果你需要自定义提示框,请使用下面方法
[XHVersion checkNewVersionAndCustomAlert:^(XHAppInfo *appInfo) {
//appInfo为新版本在AppStore相关信息
//请在此处自定义您的提示框
//......
}];