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.