メモ
高さ1のviewを無視する系。 UITableViewCellのサブクラスでaddSubviewをオーバーライド。 override func addSubview(_ view: UIView) { if view.frame.height * UIScreen.main.scale == 1 { return } super.addSubview(view) } おわり。
高さ1のviewを無視する系。 UITableViewCellのサブクラスでaddSubviewをオーバーライド。 override func addSubview(_ view: UIView) { if view.frame.height * UIScreen.main.scale == 1 { return } super.addSubview(view) } おわり。