I need to add a combo box or drop-down list to a UIView. I did not find such an object in the "Library" of the interface builder. How do I add this object to my UIVIEW? Do I have to inherit it from another object (which one?) or do I have to create it from scratch programmatically? Please help !!!
+1
A:
Youll prolly want to use the UIPicker class as there is no DropDown in UIKit, you can always make your own dropdown list if you desire
Daniel
2009-07-20 19:59:22
A:
The standard practice here is to either use a UIPicker or push a TableViewController to the stack and return once the user has selected an option here.
Dan Lorenc
2009-07-20 20:27:44
Thanx, I concidered using UIPicker but its "slot machine" look doesnt seem appropriate for my applicTION. I'll have to make a custom object, using a UITableView. Thanx for your help (-:
2009-07-20 23:51:31