iOS Question Picker does not show anything ?

MitchBu

Well-Known Member
Licensed User
Longtime User
I am trying to add items to a picker, but nothing shows on the screen. What am I missing ?

Here is what I have so far:
B4X:
PkrRegisterPrintFrom.Initialize("PkrRegisterPrintFrom")
PkrRegisterPrintFrom.SetItems(0, Array("Un", "Deux", "Trois"))
 

Semen Matusovskiy

Well-Known Member
Licensed User
If PkrRegisterPrintFrom is placed in layout, remove Initialize.
If PkrRegisterPrintFrom is not a part of layout, you need to set parent, frame, etc. like for any view.
 
Upvote 0
Top