如何检测 iOS 设备上运行的 iOS 版本?
在处理 iOS 应用时,我们有时需要了解 iPhone 设备中运行的是哪个版本。在本文中,我们将学习如何使用 iOS 应用查找正在使用的 iOS 版本。
创建一个 iOS 应用并在其 viewController 的 view did load 函数中编写以下代码。
print(" System version - ",UIDevice.current.systemVersion)
这将返回当前使用设备的 iOS 版本。例如,我此刻仿真器使用的版本是 iOS 12.0 因此结果返回
System Version – 12.0
广告