AdBlockButton.swift
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// AdBlockButton.swift
// browser
//
// Created by Artem Talko on 22.11.2023.
//
import UIKit
final class AdBlockButton: UIButton {
var buttonImageView: UIImageView = {
let obj = UIImageView()
let userDefaultsAdBlockingValue = CachingManager.shared.adBlockerState
if userDefaultsAdBlockingValue {
obj.image = .adBlockOnState
} else {
obj.image = .adBlockOffState
}
obj.contentMode = .scaleAspectFit
return obj
}()
override init (frame: CGRect) {
super.init(frame: frame)
setup()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setup() {
addSubview(buttonImageView)
setupConstraints()
}
private func setupConstraints() {
buttonImageView.snp.makeConstraints { make in
make.top.equalToSuperview()
make.leading.equalToSuperview()
make.bottom.equalToSuperview()
make.trailing.equalToSuperview()
}
}
}