mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-14 12:31:00 +00:00
53 lines
1.5 KiB
Swift
53 lines
1.5 KiB
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
final class CapsuleLabel: UILabel {
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
initialSetup()
|
|
}
|
|
|
|
@available(*, unavailable)
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
|
|
layer.cornerRadius = bounds.height / 2
|
|
invalidateIntrinsicContentSize()
|
|
}
|
|
|
|
override func drawText(in rect: CGRect) {
|
|
super.drawText(in: rect.inset(by: .init(
|
|
top: .compactSpacing,
|
|
left: .defaultSpacing,
|
|
bottom: .compactSpacing,
|
|
right: .defaultSpacing)))
|
|
}
|
|
|
|
override var intrinsicContentSize: CGSize {
|
|
var size = super.intrinsicContentSize
|
|
|
|
size.width += .defaultSpacing * 2
|
|
size.height += .compactSpacing * 2
|
|
|
|
return size
|
|
}
|
|
}
|
|
|
|
private extension CapsuleLabel {
|
|
|
|
func initialSetup() {
|
|
backgroundColor = .secondarySystemBackground
|
|
textColor = .secondaryLabel
|
|
font = UIFont.preferredFont(forTextStyle: .footnote)
|
|
adjustsFontForContentSizeCategory = true
|
|
setContentHuggingPriority(.required, for: .horizontal)
|
|
setContentCompressionResistancePriority(.required, for: .horizontal)
|
|
clipsToBounds = true
|
|
}
|
|
}
|