blob: f440497dc06ec93abc9cc3ae01b719a68c64faeb (
plain)
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
|
//
// SettingsDNSInfoCell.swift
// MullvadVPN
//
// Created by Jon Petersson on 2023-07-07.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import UIKit
class SettingsDNSInfoCell: UITableViewCell {
let titleLabel = UILabel()
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
backgroundColor = .secondaryColor
contentView.directionalLayoutMargins = UIMetrics.SettingsCell.defaultLayoutMargins
titleLabel.adjustsFontForContentSizeCategory = true
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.textColor = UIColor.TableSection.footerTextColor
titleLabel.numberOfLines = 0
titleLabel.setContentCompressionResistancePriority(.defaultHigh, for: .vertical)
titleLabel.setContentHuggingPriority(.defaultLow, for: .vertical)
contentView.addConstrainedSubviews([titleLabel]) {
titleLabel.pinEdgesToSuperviewMargins(.all().excluding([.leading]))
titleLabel.pinEdgesToSuperview(.init([.leading(16)]))
}
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
|