How to find child of list element in ios?

I have a dynamic table cell:

//UIAApplication[1]/UIAWindow[1]/UIATableView[1]/UIATableCell[1]/UIAStaticText[1]
//UIAApplication[1]/UIAWindow[1]/UIATableView[1]/UIATableCell[2]/UIAStaticText[1]

In android, i can find list element by xpath:
//UIAApplication[1]/UIAWindow[1]/UIATableView[1]/UIATableCell

And then i use this list element.get(index).findElement(By.Class or id( …)) but in ios i just can use by.Xpath to find element on real device. What is solution for this case?

Please help me!

Thanks so much