blob: 95fd21160231847b7363984c7ed9c6372debfc40 (
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
37
38
39
40
41
|
//
// SettingsStaticTextFooterView.swift
// MullvadVPN
//
// Created by pronebird on 05/10/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import UIKit
class SettingsStaticTextFooterView: UITableViewHeaderFooterView {
let titleLabel: UILabel = {
let titleLabel = UILabel()
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.font = UIFont.systemFont(ofSize: 14)
titleLabel.textColor = .white
titleLabel.numberOfLines = 0
return titleLabel
}()
override init(reuseIdentifier: String?) {
super.init(reuseIdentifier: reuseIdentifier)
contentView.layoutMargins = UIMetrics.settingsCellLayoutMargins
contentView.addSubview(titleLabel)
let bottomConstraint = titleLabel.bottomAnchor.constraint(equalTo: contentView.layoutMarginsGuide.bottomAnchor)
bottomConstraint.priority = .defaultLow
contentView.addConstraints([
titleLabel.topAnchor.constraint(equalTo: contentView.layoutMarginsGuide.topAnchor),
titleLabel.leadingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.leadingAnchor),
titleLabel.trailingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.trailingAnchor),
bottomConstraint
])
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
|