Failed to click on element using touchActions on iOS

Hi All,

Not able to click on an element which is present at last corner of scroller after updated the appium library.
When I was using the appium.io client as 5.90 BETA and appium 1.7.2 then I was able to click the element if it is not present on the screen as well.
In that case I was using below code:

	MultiTouchAction multiTouch = new MultiTouchAction(mAppiumDriver);
	TouchAction tap = new TouchAction(mAppiumDriver);
	multiTouch.add(tap.press(getElementUsingAccessibilityID(accessiblityID)).waitAction(Duration.ofMillis(100)).release());

multiTouch.perform();
multiTouch.perform();

However, after updating appium as 1.8.2 beta and appium.io as 6.0.0, I am not able to click the element even I have modified the code as per new libs

           MultiTouchAction multiTouch = new MultiTouchAction(mAppiumDriver);
	IOSTouchAction tap = new IOSTouchAction(mAppiumDriver);	
	multiTouch.add(tap.press(iosPressOptions().withElement(ElementOption.element(ele)))
			.waitAction(WaitOptions.waitOptions(Duration.ofMillis(2000)))
			.release());
	multiTouch.perform();
}