blob: ab477a3be53788b9cceed04b4408c611b65bde67 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
//
// ScaledSegmentedControl.swift
// MullvadVPN
//
// Created by Mojgan on 2025-07-02.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import UIKit
final class ScaledSegmentedControl: UISegmentedControl {
private let textStyle: UIFont.TextStyle
private let fontWeight: UIFont.Weight
init(textStyle: UIFont.TextStyle = .body, weight: UIFont.Weight = .regular) {
self.textStyle = textStyle
self.fontWeight = weight
super.init(frame: .zero)
applyTextAttributes()
subscribeToDynamicType()
}
required init?(coder: NSCoder) {
self.textStyle = .body
self.fontWeight = .regular
super.init(coder: coder)
applyTextAttributes()
subscribeToDynamicType()
}
override func insertSegment(withTitle title: String?, at segment: Int, animated: Bool) {
super.insertSegment(withTitle: title, at: segment, animated: animated)
applyTextAttributes()
}
private func applyTextAttributes() {
let font = UIFont.preferredFont(forTextStyle: textStyle).withWeight(fontWeight)
let attributes: [NSAttributedString.Key: Any] = [
.font: font,
.foregroundColor: UIColor.primaryTextColor,
]
setTitleTextAttributes(attributes, for: .normal)
setTitleTextAttributes(attributes, for: .selected)
}
private func subscribeToDynamicType() {
NotificationCenter.default.addObserver(
self,
selector: #selector(contentSizeChanged),
name: UIContentSizeCategory.didChangeNotification,
object: nil
)
}
@objc private func contentSizeChanged() {
applyTextAttributes()
}
deinit {
NotificationCenter.default.removeObserver(self)
}
}
|