We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I add multiple downpickers in the same view, when I select a option in the first, all others pickers select the first option automatically...
The text was updated successfully, but these errors were encountered:
Same problem for me
Sorry, something went wrong.
The problem in my case was IQKeyboardManager library. I removed this folder from my project and DownPicker works fine.
I solved it like below.
in .h file @Property (nonatomic) DownPicker *picker1; @Property (nonatomic) DownPicker *picker2;
in .m file NSArray *array1 = @[@"data 1", @"data 2", @"data 3"]; self.picker1 = [[DownPicker alloc] initWithTextField:self.priceTierTF withData:array1];
NSArray *array2 = @[@"data 1", @"data 2", @"data 3"]; self.picker2 = [[DownPicker alloc] initWithTextField:self.priceTierTF withData:array2];
No branches or pull requests
If I add multiple downpickers in the same view, when I select a option in the first, all others pickers select the first option automatically...
The text was updated successfully, but these errors were encountered: