I need to change default icon for moving cells in UITableView.
This one:
I use editingAccessoryView to replace reorder icon.
- (void) setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing: editing animated: YES]; self.showsReorderControl = NO; self.editingAccessoryView = editing ? [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"yourReorderIcon"]] : nil; }
If you are not using editing accessory view, this may be a good choice.