iOS获取当前app的名称和版本号

iOS获取当前app的名称和版本号,第1张

iOS获取当前app的名称版本

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]//获取app版本信息

NSLog(@"%@",infoDictionary) //这里会得到很对关于app的相关信息

下面,我们开始取需要的字段:

// app名称

NSString *app_Name = [infoDictionary objectForKey:@"CFBundleDisplayName"]

// app版本

NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"]

// app build版本

NSString *app_build = [infoDictionary objectForKey:@"CFBundleVersion"]

//手机序列号

NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]

NSLog(@"手机序列号: %@",identifierNumber)

//手机别名: 用户定义的名称

NSString* userPhoneName = [[UIDevice currentDevice] name]

NSLog(@"手机别名: %@", userPhoneName)

//设备名称

NSString* deviceName = [[UIDevice currentDevice] systemName]

NSLog(@"设备名称: %@",deviceName )

//手机系统版本

NSString* phoneVersion = [[UIDevice currentDevice] systemVersion]

NSLog(@"手机系统版本: %@", phoneVersion)

//手机型号

NSString* phoneModel = [[UIDevice currentDevice] model]

NSLog(@"手机型号: %@",phoneModel )

//地方型号  (国际化区域名称)

NSString* localPhoneModel = [[UIDevice currentDevice] localizedModel]

NSLog(@"国际化区域名称: %@",localPhoneModel )

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]

// 当前应用名称

NSString *appCurName = [infoDictionary objectForKey:@"CFBundleDisplayName"]

NSLog(@"当前应用名称:%@",appCurName)

// 当前应用软件版本  比如:1.0.1

NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"]

NSLog(@"当前应用软件版本:%@",appCurVersion)

// 当前应用版本号码  int类型

NSString *appCurVersionNum = [infoDictionary objectForKey:@"CFBundleVersion"]

NSLog(@"当前应用版本号码:%@",appCurVersionNum)

    开发中我们可能会遇到这样的需求,当 AppStore 中有新版本迭代更新,在用户点开 APP 的时候d框提醒客户去 AppStore 更新 APP。这里面就有个关键点,判断当前 APP 与 AppStore 中的版本高低,若一样,则无需进行提示;反之则d框提示(用户使用版本不会比 AppStore 版本高)。下面就了解如何获取 APP 在 AppStore 中的版本号。

    升级

    关于iOS版本升级,苹果是不允许用户有强制用户升级的提示的,但是为了让用户知道APP更新了,一般APP里面是会有版本升级提示。下面来介绍一下一般都是怎么做的。

    Tips:

    1、用 "https://itunes.apple.com/lookup?id=" 获取版本号,会出现延迟或请求回来的版本号不稳定还有就是与刚刚发布的版本号对不上。 这个是连接国外的服务器,所以会有延迟。 解决:使用 "https://itunes.apple.com/cn/lookup?id=" 路径。

    2、如果上架的时候只选中国,而且又用"https://itunes.apple.com/lookup?id=" 获取版本号,那么 resultCount 就为 0,获取不到版本数据。解决方法同上。

    3、曾经测试反馈在 APP 刚启动时候都是白屏的情况。发现是版本号请求引起线程阻塞,所以要注意多线程问题。

    4、应用程序还没有发布,如何获取它的 id 啊。不急,App Store Connect 创建要发布应用的时候会生成这个 id 的。

    5、请求中需要的 id,登录开发者账号到 App Store Connect 上查看 App ID。

    More Thinking , 如何进行强制更新和非强制更新?

    Was this help article useful? Send feedback.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11082075.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存