“Bold World in Tekst Swift” Kod odpowiedzi

Jak odważnie 1 słowo swift

extension String {
func withBoldText(text: String, font: UIFont? = nil) -> NSAttributedString {
  let _font = font ?? UIFont.systemFont(ofSize: 14, weight: .regular)
  let fullString = NSMutableAttributedString(string: self, attributes: [NSAttributedString.Key.font: _font])
  let boldFontAttribute: [NSAttributedString.Key: Any] = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: _font.pointSize)]
  let range = (self as NSString).range(of: text)
  fullString.addAttributes(boldFontAttribute, range: range)
  return fullString
}}


// USE CASE:
       let text = "Discover New Shops.".withBoldText(text: "New")
       label.attributedText =  headerTitle

        
Powerful Peacock

Bold World in Tekst Swift

Text("Bold text").bold() + Text("normal text")
Rainbow Otter

Odpowiedzi podobne do “Bold World in Tekst Swift”

Pytania podobne do “Bold World in Tekst Swift”

Więcej pokrewnych odpowiedzi na “Bold World in Tekst Swift” w Swift

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu