スワイプ削除ボタンの背景色をクリアカラーに変更したいです。次のコードを試しましたが、役に立ちませんでした。
UIView* myBackgroundView = [[UIView alloc] initWithFrame:CGRectZero];
myBackgroundView.backgroundColor = [UIColor clearColor];
cell.editingAccessoryView = myBackgroundView;
cell.backgroundView = [[UIView alloc] initWithFrame:CGRectZero];
cell.backgroundView.backgroundColor = [UIColor clearColor];
何か案は?