| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // OverrideHistoryCollectionViewCell.swift
- // LoopKitUI
- //
- // Created by Anna Quinlan on 8/6/20.
- // Copyright © 2020 LoopKit Authors. All rights reserved.
- //
- import UIKit
- final class OverrideHistoryCollectionViewCell: UICollectionViewCell, IdentifiableClass {
- @IBOutlet weak var titleLabel: UILabel!
- private lazy var overlayDimmerView: UIView = {
- let view = UIView()
- if #available(iOSApplicationExtension 13.0, *) {
- view.backgroundColor = .systemBackground
- } else {
- view.backgroundColor = .white
- }
- view.alpha = 0
- view.translatesAutoresizingMaskIntoConstraints = false
- return view
- }()
- override func awakeFromNib() {
- super.awakeFromNib()
- let selectedBackgroundView = UIView()
- self.selectedBackgroundView = selectedBackgroundView
- if #available(iOSApplicationExtension 13.0, iOS 13.0, *) {
- selectedBackgroundView.backgroundColor = .tertiarySystemFill
- backgroundColor = .secondarySystemGroupedBackground
- layer.cornerCurve = .continuous
- } else {
- selectedBackgroundView.backgroundColor = UIColor.lightGray.withAlphaComponent(0.3)
- backgroundColor = .white
- }
- layer.cornerRadius = 16
- addSubview(overlayDimmerView)
- NSLayoutConstraint.activate([
- overlayDimmerView.leadingAnchor.constraint(equalTo: leadingAnchor),
- overlayDimmerView.trailingAnchor.constraint(equalTo: trailingAnchor),
- overlayDimmerView.topAnchor.constraint(equalTo: topAnchor),
- overlayDimmerView.bottomAnchor.constraint(equalTo: bottomAnchor)
- ])
- }
- override func prepareForReuse() {
- removeOverlay(animated: false)
- }
- func applyOverlayToFade(animated: Bool) {
- if animated {
- UIView.animate(withDuration: 0.3, animations: {
- self.overlayDimmerView.alpha = 0.5
- })
- } else {
- self.overlayDimmerView.alpha = 0.5
- }
- }
- func removeOverlay(animated: Bool) {
- if animated {
- UIView.animate(withDuration: 0.3, animations: {
- self.overlayDimmerView.alpha = 0
- })
- } else {
- self.overlayDimmerView.alpha = 0
- }
- }
- }
|