“mutige Welt im Text schnell” Code-Antworten

wie man fett ist 1 Wort 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

mutige Welt im Text schnell

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

Ähnliche Antworten wie “mutige Welt im Text schnell”

Fragen ähnlich wie “mutige Welt im Text schnell”

Weitere verwandte Antworten zu “mutige Welt im Text schnell” auf Swift

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen