iOS Question Custom keyboard

Claude Brun

Active Member
Licensed User
Longtime User
i want to get a duration on a textfield. The format is hh:mm
« : » is not present on numeric keyboard.
How to add this character or create a custom keyboard Whith numbers and :

Thank
 

Claude Brun

Active Member
Licensed User
Longtime User
Yes that right. Thank

But is it possible to set 2 wheels (one for hours, one for minutes) in one pickerview
 
Upvote 0

Brandsum

Well-Known Member
Licensed User
Yes that right. Thank

But is it possible to set 2 wheels (one for hours, one for minutes) in one pickerview
Yup you can. Like this,

B4X:
Picker1.SetItems(0,Array As String("01","02","03","04","05","06","07","08","09","10","11","12"))
Picker1.SetItems(1,Array As String("01","02","03","04","05","06","07","08","09","10","11","12"))
It will look like this,
Simulator Screen Shot - iPhone 8 Plus - 2019-03-03 at 17.12.41.png
 
Upvote 0
Top