作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我面临检索 iOS 版本的困难,根据此链接 https://github.com/facebook/react-native/issues/3766 ,似乎不会有任何支持检索 iOS 版本。我试过第三方 provider但似乎也无法检索 iOS 版本。
请问你们是怎么处理的?
最佳答案
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/
我是一名优秀的程序员,十分优秀!