iOS Question How do I create a iPhone like Date Picker

davepamn

Active Member
Licensed User
Longtime User
Another date picker worked but I want a Date picker like the iPhone

B4X:
AS IS:

sub Process_Globals
Private adp As AnotherDatePicker
Private cmdDate As Button
end sub
Private Sub Application_Start (Nav As NavigationController)
    adp.Initialize(Me, "adp")

    adp.AddToParent(Page1.RootPanel,cmdDate )

    adp.SetDate(DateTime.Now, True)
end sub

Sub cmdDate_Click

    adp.Show

End Sub

How do I get the Xcode date picker look
 

davepamn

Active Member
Licensed User
Longtime User
What is the difference between a light grey question thread and a green question thread? Am I suppose to close the question, if a solution is found
 
Upvote 0
Top