How can make custom button for moving rows in UITable?
I would like it to be transparent.
(Instead of this:
)
Another thing is, when the cell is moved, it has shadow. Is it possible to remove it?
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.
Try this…
You have to do this by subclassing UITableViewCell and overriding its setEditing:animated: method as follows:
The re-order control is a UITableViewCellReorderControl, but that’s a private class, so you can’t access it directly.
you could just look through the hierarchy of subviews and find its imageView.