frenzy-ios/Reader/Screens/Home/HomeCollectionViewCell.swift

23 lines
628 B
Swift
Raw Normal View History

2022-01-10 00:23:22 +00:00
//
// HomeCollectionViewCell.swift
// Reader
//
// Created by Shadowfacts on 1/9/22.
//
import UIKit
class HomeCollectionViewCell: UICollectionViewListCell {
override func updateConfiguration(using state: UICellConfigurationState) {
var backgroundConfig = UIBackgroundConfiguration.listGroupedCell().updated(for: state)
2022-01-11 03:36:54 +00:00
if state.isHighlighted || state.isSelected {
backgroundConfig.backgroundColor = .appCellHighlightBackground
} else {
2022-01-10 00:23:22 +00:00
backgroundConfig.backgroundColor = .appBackground
}
self.backgroundConfiguration = backgroundConfig
}
}