美文网首页
iOS - 版本控制

iOS - 版本控制

作者: 失忆的程序员 | 来源:发表于2020-09-08 10:50 被阅读0次

今天更新了一下版本控制,

方法有很多,直接上代码

根据我们自己的逻辑来的,

- (BOOL)xpf_compareVesionWithServerVersion:(NSString *)version
{
NSArray *versionArray = [version componentsSeparatedByString:@"."];//服务器返回版
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];
NSArray *currentVesionArray = [app_Version componentsSeparatedByString:@"."];//当前版本
NSInteger a = (versionArray.count > currentVesionArray.count) ? currentVesionArray.count : versionArray.count;
XPFLog(@"=====> %ld, %@, %@", a, versionArray, currentVesionArray);
for (int i = 0; i < a; i++)
{
NSInteger a = [versionArray[i] integerValue];
NSInteger b = [currentVesionArray[i] integerValue];
if (a > b)
{
NSLog(@"有新版本");
return YES;
}
else if (a < b)
{
return NO;
}
}
return NO;
}

/// 注意 服务器给的版本 必须是 ,你的当前版本好的格式哦 例如 1.0.39,保证 是三位哦,不理解看代码

///  服务器给你的版本 是你APP已经审核通过的版本 ,比如1.0.3审核通过App Store可销售,现在要提交新版本 1.0.5,那服务器给你 1.0.3就好,根据你的业务逻辑来定

if ([self compareVesionWithServerVersion:@"1.0.39"]) 
{
XPFLog(@" yes ");
}
else
{
XPFLog(@" no ");
}

相关文章

网友评论

      本文标题:iOS - 版本控制

      本文链接:https://www.haomeiwen.com/subject/vrsdektx.html