isiOS static method

bool isiOS()

Implementation

static bool isiOS() {
  if(!isWeb()) {
    try {
      return Platform.isIOS;
    } catch(e) {
      return false;
    }
  }
  return false;
}