如何使用Telerik AppBuilder(Cordova.js)检测iOS版本?如果使用相同的方法来查找任何移动平台的版本,那将是很好的,但我需要专门针对iOS。
如果我需要提供任何其他信息,请告诉我。
提前谢谢。
其他答案
以下是mobileOS对象中的信息:
答案 0 :(得分:1)
查看mobileOS对象。它充满了关于运行应用程序的设备的各种好信息。
// isiPad: Must be mobile OS AND ipad
var isiPad = kendo.support.mobileOS && kendo.support.mobileOS.device == 'ipad';
if (isiPad) {