Is it possible to get a double picker to appear from the bottom of a screen when a certain button is selected? And is it possible to remove a value from a picker if it was already selected?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Of course it’s possible. I did that for an app just this summer. But you’ll have to code the component yourself.
My suggestion is to create a class which has a
UIPickerViewmember; this class, when instantiated and sent a message (like-showInView:), will make the view slide up. You’ll need to have a delegate protocol for the class; it will probably make sense to have its delegate also implementUIPickerViewDelegateandUIPickerViewDataSource.