tags:

views:

461

answers:

1
+1  Q: 

iPhone ComboBox ?

Hi guys.

Is there a way to make ComboBox on the iPhone ? I know there is no standard controller for ComboBox. But I am thinking custom controller instead of this.

Thanks in advance.

+1  A: 

The UIPickerView is the control that would normally be a combo box. See Apple's documentation for information on how to use it. It works similar to UITableViews.

MrMage
Thanks. I am searching like this :http://isnipe.webdiligence.ca/images/PNG/screens-1.2/Picture-1.pngI don't know whether this calls UIPicker on another screen, when user touches on the combo.Is it possible to make combo like on the above link ?Thanks.
It will most definitely show a `UIPickerView`. To get a visual appearance like a combo box prior to clicking on it, just mock up your own images and use it as background for a button.
MrMage