UIDropDown icon indicating copy to clipboard operation
UIDropDown copied to clipboard

sir, I have a problem when I put two dropdown

Open davamp opened this issue 7 years ago • 1 comments

sir, I have a problem when I put two dropdown near each other.The first drop down its hover on the second dropdown and it won't select on the item in first dropdown control. thanks

davamp avatar Jul 17 '17 08:07 davamp

You can use this:

firstPicker.tableWillAppear {
            self.view.bringSubview(toFront: self.firstPicker)
            
            self.view.sendSubview(toBack: self.secondPicker)
 }

Note that you have to put 2 pickers in a same view.

khoa-nvk avatar Oct 20 '17 02:10 khoa-nvk