Question

How do I detect the version of iOS using Telerik AppBuilder (Cordova.js)? That would be great if the same method was used for finding the version for any mobile platform, but I need it specifically for iOS.

Please let me know if there is any other information I need to provide.

Thank you in advance.


Additional answer

Here is the information found in the mobileOS object:

enter image description here

Was it helpful?

Solution

Look at the mobileOS object. It is filled is all kinds of good info about the device that is running the app.

// isiPad: Must be mobile OS AND ipad
var isiPad = kendo.support.mobileOS && kendo.support.mobileOS.device == 'ipad';
if (isiPad) {
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top