1
0
Fork 0
mirror of https://github.com/metabolist/metatext.git synced 2025-03-09 15:21:04 +00:00
metatext/Extensions/UIButton+Extensions.swift
2020-12-02 17:06:46 -08:00

14 lines
548 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
extension UIButton {
func setAttributedLocalizedTitle(localizationKey: String, count: Int) {
let localizedTitle = String.localizedStringWithFormat(NSLocalizedString(localizationKey, comment: ""), count)
setAttributedTitle(localizedTitle.countEmphasizedAttributedString(count: count), for: .normal)
setAttributedTitle(
localizedTitle.countEmphasizedAttributedString(count: count, highlighted: true),
for: .highlighted)
}
}