修改tableview编辑模式下的系统自带的排序图标

- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
    [super setEditing: editing animated: YES];
    if (editing) {
        for (UIView * view in self.subviews) {
            if ([NSStringFromClass([view class]) rangeOfString: @"Reorder"].location != NSNotFound) {
                for (UIView * subview in view.subviews) {
                    if ([subview isKindOfClass: [UIImageView class]]) {
                        ((UIImageView *)subview).image = [UIImage imageNamed:@"<#imgeName#>"];
                    }
                }
            }
        }
    }
}

你可能感兴趣的:(修改tableview编辑模式下的系统自带的排序图标)