項(xiàng)目中的請(qǐng)求地址 改變?yōu)?https 請(qǐng)求
項(xiàng)目介紹:
XHVersion
1.一行代碼檢測(cè)App更新,無(wú)需添加AppId等任何信息
2.支持自定義新版本提示框
3.代碼地址:https://github.com/CoderZhuXH/XHVersion
API
/**
*? 檢測(cè)新版本(使用默認(rèn)提示框)
*/
+(void)checkNewVersion;
/**
*? 檢測(cè)新版本(自定義提示框)
*
*? @param newVersion 新版本信息回調(diào)
*/
+(void)checkNewVersionAndCustomAlert:(NewVersionBlock)newVersion;
使用方法
導(dǎo)入頭文件 #import "XHVersion.h" ,在需要檢測(cè)新版本的地方調(diào)用下面代碼
//1.新版本檢測(cè)(使用默認(rèn)提示框)
[XHVersion checkNewVersion];
//2.如果你需要自定義提示框,請(qǐng)使用下面方法
[XHVersion checkNewVersionAndCustomAlert:^(XHAppInfo *appInfo) {
//appInfo為新版本在AppStore相關(guān)信息
//請(qǐng)?jiān)诖颂幾远x您的提示框
//......
}];