TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2016 |
Maintained by CoderZhuXH.
/**
* 检测新版本(使用默认提示框)
*/
+(void)checkNewVersion;
/**
* 检测新版本(自定义提示框)
*
* @param newVersion 新版本信息回调
*/
+(void)checkNewVersionAndCustomAlert:(NewVersionBlock)newVersion;
//1.新版本检测(使用默认提示框)
[XHVersion checkNewVersion];
//2.如果你需要自定义提示框,请使用下面方法
[XHVersion checkNewVersionAndCustomAlert:^(XHAppInfo *appInfo) {
//appInfo为新版本在AppStore相关信息
//请在此处自定义您的提示框
//......
}];
XHVersion 使用 MIT 许可证,详情见 LICENSE 文件