iOS Question String From Selected Picker Row

RichardN

Well-Known Member
Licensed User
Longtime User
A picker view contains text which is actually an attributed string.

Is there an easier/smarter coding method to extract a simple string from the selected picker row than this.....?

B4X:
Dim att as AttributedString
Dim s as String

att.Initialize("",Null,Null)
att = picker1.GetSelectedItem(0)
s = att.ToString
 
Top