Scroll in real appium test

Hi, I’m using appium for test on iPhone, and I can’t scroll. I’m usin that:

(new TouchAction(driver)).press(point(164,585)).moveTo(point(165,434)).release().perform();

Can someone help me?

I solved it with:

        (new TouchAction(driver)).longPress(point(167,573)).moveTo(point(171,399)).release().perform();