I need to change default icon for moving cells in UITableView.
This one:

Is it possible?
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.
This is a really hacky solution, and may not work long term, but may give you a starting point. The re-order control is a
UITableViewCellReorderControl, but that’s a private class, so you can’t access it directly. However, you could just look through the hierarchy of subviews and find its imageView.You can do this by subclassing
UITableViewCelland overriding itssetEditing:animated:method as follows:Or in Swift
Be warned though… this may not be a long term solution, as Apple could change the view hierarchy at any time.