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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
//
// SettingsCell.swift
// MullvadVPN
//
// Created by pronebird on 22/05/2019.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import UIKit
enum SettingsDisclosureType {
case none
case chevron
case externalLink
case tick
var image: UIImage? {
switch self {
case .none:
nil
case .chevron:
UIImage.CellDecoration.chevronRight
case .externalLink:
UIImage.CellDecoration.externalLink
case .tick:
UIImage.CellDecoration.tick
}
}
}
class SettingsCell: UITableViewCell, CustomCellDisclosureHandling {
typealias InfoButtonHandler = () -> Void
let disclosureImageView = UIImageView(image: nil)
let mainContentContainer = UIView()
let leftContentContainer = UIView()
let rightContentContainer = UIView()
var infoButtonHandler: InfoButtonHandler? {
didSet {
infoButton.isHidden = infoButtonHandler == nil
let buttonAreaWidth =
UIMetrics.contentLayoutMargins.leading
+ UIMetrics
.contentLayoutMargins.trailing + 24
infoButton.widthAnchor
.constraint(
equalToConstant: infoButton.isHidden ? 0 : buttonAreaWidth
).isActive = true
}
}
var disclosureType: SettingsDisclosureType = .none {
didSet {
accessoryType = .none
let image = disclosureType.image?.withTintColor(
UIColor.Cell.disclosureIndicatorColor,
renderingMode: .alwaysOriginal
)
if let image {
disclosureImageView.image = image
disclosureImageView.adjustsImageSizeForAccessibilityContentSizeCategory = true
disclosureImageView.sizeToFit()
accessoryView = disclosureImageView
} else {
accessoryView = nil
}
}
}
let titleLabel: UILabel = {
let label = UILabel()
label.font = .mullvadSmallSemiBold
label.numberOfLines = 0
label.adjustsFontForContentSizeCategory = true
label.textColor = UIColor.Cell.titleTextColor
label.setContentHuggingPriority(.defaultHigh, for: .horizontal)
label.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
return label
}()
let detailTitleLabel: UILabel = {
let label = UILabel()
label.font = .mullvadTiny
label.numberOfLines = 0
label.adjustsFontForContentSizeCategory = true
label.textColor = UIColor.Cell.detailTextColor
label.setContentHuggingPriority(.defaultLow, for: .horizontal)
label.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
return label
}()
private var subCellLeadingIndentation: CGFloat = 0
private let infoButton: UIButton = {
let button = UIButton(type: .custom)
button.setAccessibilityIdentifier(.infoButton)
button.tintColor = .white
button.setImage(UIImage.Buttons.info, for: .normal)
button.adjustsImageSizeForAccessibilityContentSizeCategory = true
button.isHidden = true
return button
}()
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
backgroundView = UIView()
backgroundView?.backgroundColor = UIColor.Cell.Background.normal
selectedBackgroundView = UIView()
selectedBackgroundView?.backgroundColor = UIColor.Cell.Background.selectedAlt
separatorInset = .zero
backgroundColor = .clear
contentView.backgroundColor = .clear
infoButton.addTarget(self, action: #selector(handleInfoButton(_:)), for: .touchUpInside)
subCellLeadingIndentation = contentView.layoutMargins.left + UIMetrics.TableView.cellIndentationWidth
rightContentContainer.setContentHuggingPriority(.required, for: .horizontal)
setLayoutMargins()
let infoButtonConstraint = infoButton.trailingAnchor.constraint(
greaterThanOrEqualTo: mainContentContainer.trailingAnchor
)
infoButtonConstraint.priority = .defaultLow
mainContentContainer.addConstrainedSubviews([titleLabel, infoButton, detailTitleLabel]) {
switch style {
case .subtitle:
titleLabel.pinEdgesToSuperview(.init([.top(0), .leading(0)]))
titleLabel.trailingAnchor
.constraint(lessThanOrEqualTo: mainContentContainer.trailingAnchor)
detailTitleLabel.pinEdgesToSuperview(.all().excluding([.top, .trailing]))
detailTitleLabel.trailingAnchor
.constraint(lessThanOrEqualTo: mainContentContainer.trailingAnchor)
detailTitleLabel.topAnchor.constraint(equalTo: titleLabel.bottomAnchor)
infoButtonConstraint
default:
titleLabel.pinEdgesToSuperview(.all().excluding(.trailing))
detailTitleLabel.pinEdgesToSuperview(.all().excluding(.leading))
detailTitleLabel.leadingAnchor.constraint(greaterThanOrEqualTo: infoButton.trailingAnchor)
}
titleLabel.trailingAnchor.constraint(
equalTo: infoButton.leadingAnchor,
constant: UIMetrics.TableView.infoButtonSpacing
)
infoButton.centerYAnchor.constraint(equalTo: titleLabel.centerYAnchor)
}
contentView.addConstrainedSubviews([leftContentContainer, mainContentContainer, rightContentContainer]) {
mainContentContainer.pinEdgesToSuperviewMargins(.all().excluding([.leading, .trailing]))
leftContentContainer.pinEdgesToSuperviewMargins(.all().excluding([.leading, .trailing]))
leftContentContainer.pinEdgesToSuperview(.init([.leading(16)]))
leftContentContainer.trailingAnchor.constraint(equalTo: mainContentContainer.leadingAnchor)
rightContentContainer.pinEdgesToSuperview(.all().excluding(.leading))
rightContentContainer.leadingAnchor.constraint(equalTo: mainContentContainer.trailingAnchor)
rightContentContainer.widthAnchor.constraint(
greaterThanOrEqualToConstant: UIMetrics.TableView.cellIndentationWidth
)
}
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func prepareForReuse() {
super.prepareForReuse()
infoButton.isHidden = true
removeLeadingView()
removeTrailingView()
setLayoutMargins()
}
func applySubCellStyling() {
contentView.layoutMargins.left = subCellLeadingIndentation
backgroundView?.backgroundColor = UIColor.Cell.Background.indentationLevelZero
}
func setLeadingView(superviewProvider: (UIView) -> Void) {
removeLeadingView()
superviewProvider(leftContentContainer)
}
func removeLeadingView() {
leftContentContainer.subviews.forEach { $0.removeFromSuperview() }
}
func setTrailingView(superviewProvider: (UIView) -> Void) {
removeTrailingView()
superviewProvider(rightContentContainer)
}
func removeTrailingView() {
rightContentContainer.subviews.forEach { $0.removeFromSuperview() }
}
@objc private func handleInfoButton(_ sender: UIControl) {
infoButtonHandler?()
}
private func setLayoutMargins() {
// Set layout margins for standard acceessories added into the cell (reorder control, etc..)
directionalLayoutMargins = UIMetrics.SettingsCell.defaultLayoutMargins
// Set layout margins for cell content
contentView.directionalLayoutMargins = UIMetrics.SettingsCell.defaultLayoutMargins
}
}
|