Change alpha channel of custom separator to match stock table view separator. Issue #1309

This commit is contained in:
Maurice Parker 2019-11-17 16:14:25 -06:00
parent 7f64db1b3a
commit 0f82561f6b

View File

@ -97,6 +97,7 @@ class MasterFeedTableViewCell : VibrantTableViewCell {
private let bottomSeparatorView: UIView = {
let view = UIView()
view.backgroundColor = UIColor.separator
view.alpha = 0.5
return view
}()