iOS检测应用更新-iVersion

iOS检测应用更新-iVersion_第1张图片

app上架之后会看到app的更新信息,信息接口http://itunes.apple.com/CN/lookup?bundleId=com.jd.paidaojia1    GET请求之后是个JSON数据,解析出来显示就行了。如果app是多语言的,其中CN是指地区的意思,比如如果要英文显示的话改为US,bundleId就是Bundle identifier

iVersion 可以检测应用更新。默认多语言。加入下面的代码就行了。

//更新提示

[iVersion sharedInstance].applicationBundleID = [[NSBundle mainBundle] bundleIdentifier];

默认的有3个按钮,可以通过下面的代码设置提示按钮样式

//设置提示按钮的样式

[iVersion sharedInstance].updatePriority=iVersionUpdatePriorityMedium;

demo下载,demo中的bundleIdentifier用的是京东到家的,所以打开会有更新提示。

iVersion的github地址https://github.com/nicklockwood/iVersion


2016.7.22补充:

框架里面根据手机的语言设置按钮的语言

`NSString *language = [[NSLocale preferredLanguages] count]? [NSLocale preferredLanguages][0]: @"en";`

但是iOS9之前 `language = @"zh-Hans"`

iOS9之后 `language = @"zh-Hans-CN"`

这个框架并没有更新,所以简单的做法就是在bundle里面再加个资源原件,把之前`zh-Hans`复制过来,把文件名改成`zh-Hans-CN`就行

iOS检测应用更新-iVersion_第2张图片

你可能感兴趣的:(iOS检测应用更新-iVersion)