TTTAttributedLabel, изменение цвета работает только при первом запуске контроллера в Swift - PullRequest
0 голосов
/ 12 февраля 2020
 self.descriptionLbl.text = actionReqdText
    let labelString = self.descriptionLbl.text as! NSString
    let contactRange1 = labelString.range(of: actionString1)
    let contactRange2 = labelString.range(of: actionString2)

    self.descriptionLbl.addLink(to: URL(string: link1), with: contactRange1)
    self.descriptionLbl.addLink(to: URL(string: link2), with: contactRange2)

    let attributedText = NSMutableAttributedString(attributedString: descriptionLbl.attributedText!)

    if  UIScreen.main.bounds.size.height < 900 {
        attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 13)!], range: contactRange1)
        attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 13)!], range: contactRange2)
    } else {
        attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 18)!], range: contactRange1)
        attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 18)!], range: contactRange2)
    }

    attributedText.addAttributes([NSAttributedString.Key(rawValue: kCTForegroundColorAttributeName as String as String): UIColor(red: 0.06, green: 0.49, blue: 0.25, alpha: 1.0)], range: contactRange1)

    attributedText.addAttributes([NSAttributedString.Key(rawValue: kCTForegroundColorAttributeName as String as String): UIColor(red: 0.06, green: 0.49, blue: 0.25, alpha: 1.0)], range: contactRange2)

    attributedText.addAttributes([NSAttributedStringKey.underlineStyle: NSUnderlineStyle.styleNone.rawValue], range: contactRange1)
    attributedText.addAttributes([NSAttributedStringKey.underlineStyle: NSUnderlineStyle.styleNone.rawValue], range: contactRange2)

    let paragraphStyle = NSMutableParagraphStyle()

    paragraphStyle.lineSpacing = 1.1 


    attributedText.addAttribute(NSAttributedStringKey.paragraphStyle, value:paragraphStyle, range:NSMakeRange(0, attributedText.length))

    descriptionLbl.attributedText = attributedText

Я пробовал этот код, чтобы получить текст зеленого цвета без подчеркивания. Работает при первом запуске контроллера вида. В следующий раз, когда я доберусь до этого экрана, он будет выделен синим цветом и подчеркнут. Любая помощь будет оценена.

1 Ответ

0 голосов
/ 13 февраля 2020
self.descriptionLbl.text = actionReqdText
let labelString = self.descriptionLbl.text as! NSString
let contactRange1 = labelString.range(of: actionString1)
let contactRange2 = labelString.range(of: actionString2)

let attributedText = NSMutableAttributedString(attributedString: descriptionLbl.attributedText!)

var linkAttributes: [AnyHashable : Any] = [:]
linkAttributes[NSAttributedString.Key.underlineStyle] = NSUnderlineStyle.styleNone.rawValue

if  UIScreen.main.bounds.size.height < 900 {
                    attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 13)!], range: contactRange1)
                    attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 13)!], range: contactRange2)
                } else {
                    attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 18)!], range: contactRange1)
                    attributedText.addAttributes([NSAttributedStringKey.font : UIFont(name: HELVETICA_LIGHT, size: 18)!], range: contactRange2)
                }

let paragraphStyle = NSMutableParagraphStyle()

paragraphStyle.lineSpacing = 1.1 

linkAttributes[NSAttributedString.Key.foregroundColor] = UIColor(red: 0.06, green: 0.49, blue: 0.25, alpha: 1.0)

linkAttributes[NSAttributedString.Key.paragraphStyle] = paragraphStyle
self.descriptionLbl.attributedText = attributedText
self.descriptionLbl.linkAttributes = linkAttributes
self.descriptionLbl.addLink(to: URL(string: link1), with: contactRange1)
self.descriptionLbl.addLink(to: URL(string: link2), with: contactRange2)

Реализован вышеуказанный код, заменив addAttributes атрибутами ссылки и переместив addLinks после добавления атрибутов. Это решило проблему

...