How to use ios uiautomation in appium inspector

Trying to use the appium inspector to confirm my ios uiautomation path and cannot get it to work.

name: LOG IN TO MOBILE BANKING
type: UIAStaticText
value: LOG IN TO MOBILE BANKING
label: LOG IN TO MOBILE BANKING
enabled: true
visible: false
valid: true
location: {32, 139}
size: {332, 21}
xpath: //UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]/UIAStaticText[1]

I set the Strategy to ios uiautomation with value
scrollViews()[0].withPredicate("ANY staticTexts.label == ‘LOG IN TO MOBILE BANKING’ ")

This comes back with no elements. What am I doing wrong?

just an update here:
I forgot the . in .scrollViews()[0]

Once I did this it highlighted the entire xpath of //UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]…it did not highlight the staticTexts element that I predicated. Please advise.

Okay I answered my own…

.scrollViews()[0].staticTexts().withPredicate("label CONTAINS ‘LOG IN TO MOBILE BANKING’ ")

This works.