Jak podkreślić UILabel
w Swift? Przeszukałem te Objective-C, ale nie mogłem zmusić ich do pracy w Swift.
ios
swift
overriding
uilabel
nsattributedstring
Esqarrouth
źródło
źródło
NSAttributedString
?Odpowiedzi:
Możesz to zrobić za pomocą NSAttributedString
Przykład:
let underlineAttribute = [NSAttributedString.Key.underlineStyle: NSUnderlineStyle.thick.rawValue] let underlineAttributedString = NSAttributedString(string: "StringWithUnderLine", attributes: underlineAttribute) myLabel.attributedText = underlineAttributedString
EDYTOWAĆ
Aby mieć te same atrybuty dla wszystkich tekstów jednego UILabel, sugeruję podklasę UILabel i nadpisywanie tekstu, na przykład:
Swift 4.2
class UnderlinedLabel: UILabel { override var text: String? { didSet { guard let text = text else { return } let textRange = NSMakeRange(0, text.count) let attributedText = NSMutableAttributedString(string: text) attributedText.addAttribute(NSAttributedString.Key.underlineStyle , value: NSUnderlineStyle.single.rawValue, range: textRange) // Add other attributes if needed self.attributedText = attributedText } } }
Swift 3.0
class UnderlinedLabel: UILabel { override var text: String? { didSet { guard let text = text else { return } let textRange = NSMakeRange(0, text.characters.count) let attributedText = NSMutableAttributedString(string: text) attributedText.addAttribute(NSUnderlineStyleAttributeName , value: NSUnderlineStyle.styleSingle.rawValue, range: textRange) // Add other attributes if needed self.attributedText = attributedText } } }
I umieszczasz swój tekst w ten sposób:
@IBOutlet weak var label: UnderlinedLabel! override func viewDidLoad() { super.viewDidLoad() label.text = "StringWithUnderLine" }
STARY:
Swift (od 2,0 do 2,3):
class UnderlinedLabel: UILabel { override var text: String? { didSet { guard let text = text else { return } let textRange = NSMakeRange(0, text.characters.count) let attributedText = NSMutableAttributedString(string: text) attributedText.addAttribute(NSUnderlineStyleAttributeName, value:NSUnderlineStyle.StyleSingle.rawValue, range: textRange) // Add other attributes if needed self.attributedText = attributedText } } }
Swift 1.2:
class UnderlinedLabel: UILabel { override var text: String! { didSet { let textRange = NSMakeRange(0, count(text)) let attributedText = NSMutableAttributedString(string: text) attributedText.addAttribute(NSUnderlineStyleAttributeName, value:NSUnderlineStyle.StyleSingle.rawValue, range: textRange) // Add other attributes if needed self.attributedText = attributedText } } }
źródło
UTF16
Podczas tworzenia tekstuRangeNSRange
Swift 5 i 4.2 jedna wkładka:
label.attributedText = NSAttributedString(string: "Text", attributes: [.underlineStyle: NSUnderlineStyle.single.rawValue])
Swift 4 jedna wkładka:
label.attributedText = NSAttributedString(string: "Text", attributes: [.underlineStyle: NSUnderlineStyle.styleSingle.rawValue])
Swift 3 jedna wkładka:
label.attributedText = NSAttributedString(string: "Text", attributes: [NSUnderlineStyleAttributeName: NSUnderlineStyle.styleSingle.rawValue])
źródło
Jeśli szukasz sposobu na zrobienie tego bez dziedziczenia:
Szybki 5
extension UILabel { func underline() { if let textString = self.text { let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single.rawValue, range: NSRange(location: 0, length: attributedString.length)) attributedText = attributedString } } }
Swift 3/4
// in swift 4 - switch NSUnderlineStyleAttributeName with NSAttributedStringKey.underlineStyle extension UILabel { func underline() { if let textString = self.text { let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.styleSingle.rawValue, range: NSRange(location: 0, length: attributedString.length)) attributedText = attributedString } } } extension UIButton { func underline() { let attributedString = NSMutableAttributedString(string: (self.titleLabel?.text!)!) attributedString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.styleSingle.rawValue, range: NSRange(location: 0, length: (self.titleLabel?.text!.characters.count)!)) self.setAttributedTitle(attributedString, for: .normal) } }
źródło
UTF16
Podczas tworzenia swojegoNSRange
Swift 5:
1- Utwórz rozszerzenie typu String, aby uzyskać atrybut attributeText
extension String { var underLined: NSAttributedString { NSMutableAttributedString(string: self, attributes: [.underlineStyle: NSUnderlineStyle.single.rawValue]) } }
2- Użyj go
Na przyciskach:
button.setAttributedTitle(yourButtonTitle.underLined, for: .normal)
Na etykietach:
Lub wersja Stoyboard
źródło
Tylko mała poprawka dla odpowiedzi Shlome w Swift 4 i Xcode 9 .
extension UILabel { func underline() { if let textString = self.text { let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSAttributedStringKey.underlineStyle, value: NSUnderlineStyle.styleSingle.rawValue, range: NSRange(location: 0, length: attributedString.length - 1)) attributedText = attributedString } } } extension UIButton { func underline() { let attributedString = NSMutableAttributedString(string: (self.titleLabel?.text!)!) attributedString.addAttribute(NSAttributedStringKey.underlineStyle, value: NSUnderlineStyle.styleSingle.rawValue, range: NSRange(location: 0, length: (self.titleLabel?.text!.count)!)) self.setAttributedTitle(attributedString, for: .normal) } }
źródło
UTF16
Podczas tworzenia swojegoNSRange
Możesz podkreślić
UILabel
tekst za pomocą programu Interface Builder.Oto link do mojej odpowiedzi: Dodawanie atrybutu podkreślenia do częściowego tekstu UILabel w scenorysie
źródło
Ta sama odpowiedź w Swift 4.2
Do UILable
extension UILabel { func underline() { if let textString = self.text { let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single.rawValue, range: NSRange(location: 0, length: textString.count)) self.attributedText = attributedString } } }
Zadzwoń po UILabel, jak poniżej
Dla UIButton
extension UIButton { func underline() { if let textString = self.titleLabel?.text { let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single.rawValue, range: NSRange(location: 0, length: textString.count)) self.setAttributedTitle(attributedString, for: .normal) } } }
Zadzwoń po UIButton, jak poniżej
Przyjrzałem się powyższym odpowiedziom i niektóre z nich wymuszają rozpakowanie wartości tekstowej . Zasugeruję, aby uzyskać wartość poprzez bezpieczne rozpakowanie. Pozwoli to uniknąć awarii w przypadku wartości zerowej. Mam nadzieję że to pomoże :)
źródło
UTF16
Podczas tworzenia swojegoNSRange
Swift 4, 4,2 i 5.
@IBOutlet weak var lblUnderLine: UILabel!
Muszę podkreślić konkretny tekst w UILabel. Więc znajdź zakres i ustaw atrybuty.
let strSignup = "Don't have account? SIGNUP NOW." let rangeSignUp = NSString(string: strSignup).range(of: "SIGNUP NOW.", options: String.CompareOptions.caseInsensitive) let rangeFull = NSString(string: strSignup).range(of: strSignup, options: String.CompareOptions.caseInsensitive) let attrStr = NSMutableAttributedString.init(string:strSignup) attrStr.addAttributes([NSAttributedString.Key.foregroundColor : UIColor.white, NSAttributedString.Key.font : UIFont.init(name: "Helvetica", size: 17)! as Any],range: rangeFull) attrStr.addAttributes([NSAttributedString.Key.foregroundColor : UIColor.white, NSAttributedString.Key.font : UIFont.init(name: "Helvetica", size: 20)!, NSAttributedString.Key.underlineStyle: NSUnderlineStyle.thick.rawValue as Any],range: rangeSignUp) // for swift 4 -> Change thick to styleThick lblUnderLine.attributedText = attrStr
Wynik
źródło
Podkreśl wiele ciągów w zdaniu.
extension UILabel { func underlineMyText(range1:String, range2:String) { if let textString = self.text { let str = NSString(string: textString) let firstRange = str.range(of: range1) let secRange = str.range(of: range2) let attributedString = NSMutableAttributedString(string: textString) attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single.rawValue, range: firstRange) attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single.rawValue, range: secRange) attributedText = attributedString } } }
Użyj w ten sposób.
lbl.text = "By continuing you agree to our Terms of Service and Privacy Policy." lbl.underlineMyText(range1: "Terms of Service", range2: "Privacy Policy.")
źródło
Szybkie 4 zmiany. Pamiętaj, aby użyć NSUnderlineStyle.styleSingle.rawValue zamiast NSUnderlineStyle.styleSingle .
'let attributedString = NSAttributedString(string: "Testing") let textRange = NSMakeRange(0, attributedString.length) let underlinedMessage = NSMutableAttributedString(attributedString: attributedString) underlinedMessage.addAttribute(NSAttributedStringKey.underlineStyle, value:NSUnderlineStyle.styleSingle.rawValue, range: textRange) label.attributedText = underlinedMessage
`
źródło
Możesz użyć tego również, jeśli chcesz uzyskać tylko połowę etykiety jako podkreślenie: - // For Swift 4.0+
let attributesForUnderLine: [NSAttributedString.Key: Any] = [ .font: UIFont(name: AppFont.sourceSansPro_Regular, size: 12) ?? UIFont.systemFont(ofSize: 11), .foregroundColor: UIColor.blue, .underlineStyle: NSUnderlineStyle.single.rawValue] let attributesForNormalText: [NSAttributedString.Key: Any] = [ .font: UIFont(name: AppFont.sourceSansPro_Regular, size: 12) ?? UIFont.systemFont(ofSize: 11), .foregroundColor: AppColors.ColorText_787878] let textToSet = "Want to change your preferences? Edit Now" let rangeOfUnderLine = (textToSet as NSString).range(of: "Edit Now") let rangeOfNormalText = (textToSet as NSString).range(of: "Want to change your preferences?") let attributedText = NSMutableAttributedString(string: textToSet) attributedText.addAttributes(attributesForUnderLine, range: rangeOfUnderLine) attributedText.addAttributes(attributesForNormalText, range: rangeOfNormalText) yourLabel.attributedText = attributedText
źródło
Powyższa odpowiedź powoduje błąd w moim środowisku kompilacji.
To nie działa w Swift 4.0:
attributedText.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.styleSingle.rawValue, range: textRange)
Spróbuj tego zamiast tego:
attributedText.addAttribute(NSAttributedStringKey.underlineStyle, value: NSUnderlineStyle.styleSingle.rawValue, range: textRange)
mam nadzieję, że to komuś pomoże.
źródło
// Wersja Swift 4
let attributedString = NSMutableAttributedString(string: "Your Text Here", attributes: [NSAttributedStringKey.underlineStyle : true]) self.yourlabel.attributedText = attributedString
źródło
Dla Swift 2.3
extension UIButton { func underline() { let attributedString = NSMutableAttributedString(string: (self.titleLabel?.text!)!) attributedString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.StyleSingle.rawValue, range: NSRange(location: 0, length: (self.titleLabel?.text!.characters.count)!)) self.setAttributedTitle(attributedString, forState: .Normal) } }
i w ViewController
@IBOutlet var yourButton: UIButton!
w
ViewDidLoad
metodzie lub w swojej funkcji po prostu napiszpodkreśli tytuł twojego przycisku
źródło
Klasa służąca do ustawiania i usuwania podkreślenia przycisków interfejsu użytkownika w języku Swift 5. Mam nadzieję, że to pomoże
import Foundation import UIKit class UiUtil { static let underlineThickness = 2 class func removeUnderlineFromButton( _ button:UIButton ) { if let str = button.titleLabel?.attributedText { let attributedString = NSMutableAttributedString( attributedString: str ) attributedString.removeAttribute(.underlineStyle, range: NSRange.init(location: 0, length: attributedString.length)) button.setAttributedTitle(attributedString, for: .normal) } } class func setUnderlineFromButton( _ button:UIButton ) { if let str = button.titleLabel?.attributedText { let attributedStringUnderline = NSMutableAttributedString( attributedString: str ) attributedStringUnderline.addAttribute( NSAttributedString.Key.underlineStyle, value: underlineThickness, range: NSRange.init(location: 0, length: attributedStringUnderline.length) ) button.setAttributedTitle(attributedStringUnderline, for: .normal) } } }
źródło