Mobile: scroll not working on iOS 8.x and appium 1.3.4 &1.3.6

    JavascriptExecutor js = (JavascriptExecutor) getDriver();
    HashMap<String, String> scrollObject = new HashMap<String, String>();
    scrollObject.put("direction", "down");
    js.executeScript("mobile: scroll", scrollObject);

I tried above code on native page but seemed the scroll didn’t work on iOS 8.x and appium 1.3.4 &1.3.6 . Any help?