美文网首页iOS Developer
iOS 更改tableViewCell系统选中图片

iOS 更改tableViewCell系统选中图片

作者: 短发控丶kk | 来源:发表于2016-12-03 17:27 被阅读0次

坚持让分享成为一种习惯

在自定义cell中加入以下代码

系统选中 自定义选中

-(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 imageNamed:@"select"];

}else

{

//未选中时图片

img.image=[UIImage imageNamed:@"empty"];

}

}

}

}

}

}

相关文章

网友评论

    本文标题:iOS 更改tableViewCell系统选中图片

    本文链接:https://www.haomeiwen.com/subject/eaecmttx.html