Dragging Tableview cells on iOS

On iOS I was trying to do following
ta1.press().moveTo().release().perform()
eg:

TouchAction ta1 = Appium::TouchAction.new.press(:element =>cell1, :x=>sourceX,:y=>sourceY ).moveTo(:x=>destinationX,:y=>destinationY ).release().perform();

But it seems moveTo method is not available on iOS. Does anyone know, how to achieve the same?

Regards