gpt4 book ai didi

ios - 如何在 React Native 中获取 iOS 版本?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:15:16 28 4
gpt4 key购买 nike

我面临检索 iOS 版本的困难,根据此链接 https://github.com/facebook/react-native/issues/3766 ,似乎不会有任何支持检索 iOS 版本。我试过第三方 provider但似乎也无法检索 iOS 版本。

请问你们是怎么处理的?

最佳答案

Detecting the iOS version

On iOS, the Version is a result of -[UIDevice systemVersion], which is a string with the current version of the operating system. An example of the system version is "10.3". For example, to detect the major version number on iOS:

import {Platform} from 'react-native';

const majorVersionIOS = parseInt(Platform.Version, 10);
console.log("iOS version " + majorVersionIOS);

关于ios - 如何在 React Native 中获取 iOS 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52361723/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com