Mobile 使用Telerik AppBuilder(Cordova.js)检测iOS版本

Mobile 使用Telerik AppBuilder(Cordova.js)检测iOS版本,mobile,telerik,kendo-mobile,Mobile,Telerik,Kendo Mobile,如何使用Telerik AppBuilder(Cordova.js)检测iOS版本?如果使用相同的方法查找任何移动平台的版本,那就太好了,但我需要它专门用于iOS 请让我知道,如果有任何其他信息,我需要提供 先谢谢你 附加答案 以下是在mobileOS对象中找到的信息: 看看mobileOS对象。它充满了关于运行应用程序的设备的各种好信息 // isiPad: Must be mobile OS AND ipad var isiPad = kendo.support.mobileOS &

如何使用Telerik AppBuilder(Cordova.js)检测iOS版本?如果使用相同的方法查找任何移动平台的版本,那就太好了,但我需要它专门用于iOS

请让我知道,如果有任何其他信息,我需要提供

先谢谢你


附加答案

以下是在mobileOS对象中找到的信息:


看看mobileOS对象。它充满了关于运行应用程序的设备的各种好信息

// isiPad: Must be mobile OS AND ipad
var isiPad = kendo.support.mobileOS && kendo.support.mobileOS.device == 'ipad';
if (isiPad) {

是的,mobileOS对象包含很多有用的信息,包括操作系统的版本。在我的问题中,我对这个问题给出了另一个答案,以提供所有这些信息。非常感谢。