Does UIPicker work with Appium version 1.5.3 getting error - selectValue requires a valid value

I have UIPicker with String values.
Appium version 1.5.3
Xcode : 7.3
iOS: 9.3.

I am trying -
Driver.findElement(By
.xpath("//UIAApplication[1]/UIAWindow[1]/UIATableView[1]/UIATableCell[2]/UIAPicker[1]/UIAPickerWheel[1]")).sendKeys(“StringValue”);

( where StringValue is displayed value in UIPicker list)

I get error - selectValue requires a valid value

In Appium Inspector the values shows up as “1 of 4”, “2 of 4” …etc. and the “Name” field is blank.

Also if I do a getAttribute(“value” ) on UIPicker element it shows up as 1 of 4, 2 of 4 etc…
Any workaround or suggestions for this?

Thanks