Not able to find Element from Element in iOS App

HI All,

As shown below, I want to find 1st UIAStaticText for each of the UIACollectionCell.
For this, I am first storing List using xpath //UIACollectionView/UIACollectionCell
then navigate to each element and then finding UIAStaticText inside this element using below 2 approach which unfortunately not working(expecting 3 child elements).

List list_Details=firstProduct.findElements(MobileBy.xpath("./child::*"));
List list_Details=firstProduct.findElements(MobileBy.xpath("./UIAStaticText"));

This does not through any error but finds 0 elements.

Can any one help me in this.