I am a very new developer for IOS, i need help, How to create dropdown box in xcode, any one provide me example to create country list in drop down?
Since there are no native DropDown
elements in iOS, you could make use of a TextField
with custom background and a UITableView
to accomplish that. Here is how to go about it.
Pseudocode
TextField
and set it's delegate to parent controllerUITextFieldDelegate
and implement the textFieldShouldBeginEditing
methodUIViewController
and implement UITableView
in it programmatically.textFieldShouldBeginEditing
method, load this controller and present it modally passing the required table's data source and set delegate as parent.tableViewController
, implement UITableViewDelegate
and implement the didSelectRowAtIndex path method.The easy and simple way to design a drop down list is by representing it like a UITableView
and some animation. This makes it look really like a dropdownlist. Here is a code I used for creating one . For this first import the < QuartzCore/QuartzCore.h > framework.
-(IBAction)DropDownTable:(id)sender
{
TableView.hidden = NO;
if(TableView.frame.origin.y ==203)
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5f];
[TableView setFrame:CGRectMake(224, 204, 27, 160)];
[UIView commitAnimations];
[self.view TableView];
}
else if (TableView.frame.origin.y == 204)
{
[TableView setFrame:CGRectMake(224, 203, 27, 0)];
TableView.hidden = YES;
}
[self.view addSubview:TableActivityLevel];
}
First make a tableview , declare its methods and make the array . Put this function on the click of a UIButton
and youll see it work !!! Happy coding :)
I beleive you shouldn't use dropdown boxes in iOS, as it's a desktop OS UI control element. You should think up something else using existing components (like PickerView), that's the words for UI consistency.
And if you need this anyway, you may create a table view, place it beneath your label and a triangular button(which causes it to appear and disappear) and populate it with values.
just for whom searching for small simple swift combo box here in 2016 year, i've tried a few of old and new (but obj-c) libs, and at last selected this:
https://github.com/sw0906/SWCombox
here is screenshot:
Here I found two demos for dropDown list, One is creating custom expandable UITableViewCell
like :-
to
source code :- DEMO
AND Another is custom Drop Down list like:-
by clicking of test then open drop down list as bellow like image
source code with Tab Bar:-DEMO
updated source code without Tab Bar :-
http://www.sendspace.com/file/83qws5