Is there a way to implement a “swipe to remove” action on UIPickerView, just like it’s done with UITableViewController?
I’ve been searching for this for some time, but have no solution.
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.
UIPickerViewobjects are not editable. When in doubt, check the documentation: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIPickerView_Class/Reference/UIPickerView.htmlHowever, there’s no reason why you couldn’t make a custom UIPickerView using a
UITableViewControllerand a bit of clever code to figure out which cell is in the middle and properly highlight it.