Change default icon for moving cells in UITableView

前端 未结 11 1583
面向向阳花
面向向阳花 2020-11-28 21:46

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

This one:

\"enter

11条回答
  •  孤独总比滥情好
    2020-11-28 22:05

    After debuging the UITableViewCell, you can use KVC in UITableViewCell subclass to change it.

    // key
    static NSString * const kReorderControlImageKey = @"reorderControlImage";
    
    // setting when cellForRow calling
    UIImage *customImage;
    [self setValue:customImage forKeyPath:kReorderControlImageKey];
    
    // to prevent crash
    - (void)setValue:(id)value forUndefinedKey:(NSString *)key {
        if ([key isEqualToString:kReorderControlImageKey]) return;
        else [super setValue:value forUndefinedKey:key];
    }
    

提交回复
热议问题