在定制的cell類里面寫(xiě)如下代碼
- (void)layoutSubviews {
[super layoutSubviews];
for (UIView *subView in self.subviews){
if([subView isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")]) {
UIView *confirmView=(UIView *)[subView.subviews firstObject];
// 改背景顏色
confirmView.backgroundColor = GLCOLORBOTTOM;
if([confirmView isKindOfClass:NSClassFromString(@"UIButton")]){
UIButton *deletebtn=(UIButton *)confirmView;
// 改刪除按鈕
[deletebtn setImage:[UIImage imageNamed:@"icon_delete_round"] forState:UIControlStateNormal];
[deletebtn setTitle:nil forState:UIControlStateNormal];
}
break;
}
}
}
樣式如下
IMG_1576.PNG