I\'m trying to remove the separator for one UITableViewCell. I did the following:
UITableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellFo
Swift 5.1 -
override public func layoutSubviews() { super.layoutSubviews() subviews.forEach { (view) in if type(of: view).description() == "_UITableViewCellSeparatorView" { view.isHidden = true } } }