Make dropdown menu in IOS app with quick
How can I create a dropdown menu in my swift IOS app that has different options that the user can select, no matter what they choose is displayed in the shortcut above the menu. Example: dropdown menu to select age in the app. Or as an option for choosing the size and quantity in the following link http://store.nike.com/us/en_us/pd/roshe-run-shoe/pid-463712/pgid-943980 .
Please let me know if you can help me with this, thanks!
+3
source to share
1 answer
I got a similar function in Objective-C, hope the same concept can be applied to swift.
I am actually subclassing the UITableView with some custom functions and variables, and then instantiating the class with the coordination and dimension I want and using the UITableViewDelegate methods to fire the events I want.
+2
source to share