IPhone Dropdown

Does anyone have an implemented dropdown view in their application. The drop-down view should behave like a drop-down search menu or a regular drop-down web component that has a button with a text view field. Or someone can lead me to such an implementation article that is present on the Internet. I tried to study, but did not help much.

Thanks in advance.

+2
source share
3 answers

Here is sample code for creating a dropdown such as html in your application. http://code.google.com/p/dropdowndemo/downloads/list

The tutorial is here. http://ameyashetti.wordpress.com/2010/09/26/drop-down-demo/

+3
source

You can use UIPickerView as a drop down list. Have you tried this?

0
source

You can create a tableView and use the insert row in the index path, and then create an array of the index path, when you select the row, delete the rows in the index path. For the layout you can customize as you want. I did this in my application, it was free.

0
source

Source: https://habr.com/ru/post/917362/


All Articles