Since there is no pre-existing component for creating a combobox (or select box) as seen on webpages through Safari, can someone provide an example or pre-existing 3rd party component of creating one?
|
feedback
|
|
I don't think this is hard to do. In a view controller you have a UITextField and a UITableView. Assign the view controller to be the delegate of the both controls, plus the data source of the table. Implement the UITextField delegate method Have your table cells generated from the array of matches you previously stored. It should be pretty straightforward and shouldn't take much code at all beyond a few delegate methods to get working. | |||
|
feedback
|
|
Could somebody please put some sample code to implement Combobox/drop down list on iPhone? I basically want to programatically implement the dropdown box. When the user clicks this button the picker should come up to allow user to choose values. | |||
|
feedback
|