Код: Выделить всё
-(void)layoutSubviews
{
[super layoutSubviews];
for (UIControl *control in self.subviews){
if ([control isMemberOfClass:NSClassFromString(@"UITableViewCellEditControl")]){
for (UIView *v in control.subviews)
{
if ([v isKindOfClass: [UIImageView class]]) {
UIImageView *img=(UIImageView *)v;
if (self.selected) {
img.image= [UIImage createImageWithColor:[UIColor redColor]];
}else
{
img.image= [UIImage createImageWithColor:[UIColor yellowColor]];
}
}
}
}
}
}
[img]https: //i.stack.imgur.com/qNIwf.png[/img]
Как показано на рисунке. галочки не заменялись желтым изображением, пока я не нажму на них.
Подробнее здесь: https://stackoverflow.com/questions/365 ... ltiple-sel