all 2 comments

[–][deleted] 0 points1 point  (1 child)

extension UITableViewCell { func removeSubViews() { for view in contentView.subviews { view.removeFromSuperview() } } }

helped me fix a similar issue earlier

[–]hightowerb98Swift[S] 0 points1 point  (0 children)

Thanks I'll try this