第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在Swift中使用NSMutableAttributedString更改特定文本的顏色

在Swift中使用NSMutableAttributedString更改特定文本的顏色

一只斗牛犬 2019-11-28 09:50:30
我遇到的問題是我希望能夠更改TextView中某些文本的textColor。我使用的是串聯(lián)字符串,只希望將字符串追加到TextView的文本中??磥砦蚁胧褂玫氖荖SMutableAttributedString,但是在Swift中找不到如何使用它的任何資源。到目前為止,我有這樣的事情:let string = "A \(stringOne) with \(stringTwo)"var attributedString = NSMutableAttributedString(string: string)textView.attributedText = attributedString從這里我知道我需要找到需要更改其textColor的單詞范圍,然后將它們添加到屬性字符串中。我需要知道的是如何從attributedString中查找正確的字符串,然后更改其textColor。由于我的評(píng)分太低,我無法回答自己的問題,但這是我找到的答案我通過翻譯一些代碼來找到自己的答案更改NSAttributedString中子字符串的屬性這是Swift中的實(shí)現(xiàn)示例:let string = "A \(stringOne) and \(stringTwo)"var attributedString = NSMutableAttributedString(string:string)let stringOneRegex = NSRegularExpression(pattern: nameString, options: nil, error: nil)let stringOneMatches = stringOneRegex.matchesInString(longString, options: nil, range: NSMakeRange(0, attributedString.length))for stringOneMatch in stringOneMatches {    let wordRange = stringOneMatch.rangeAtIndex(0)    attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.nameColor(), range: wordRange)}textView.attributedText = attributedString由于我想更改多個(gè)字符串的textColor,因此我將創(chuàng)建一個(gè)輔助函數(shù)來處理此問題,但這可用于更改textColor。
查看完整描述

3 回答

?
藍(lán)山帝景

TA貢獻(xiàn)1843條經(jīng)驗(yàn) 獲得超7個(gè)贊

Swift 2.1更新:


 let text = "We tried to make this app as most intuitive as possible for you. If you have any questions don't hesitate to ask us. For a detailed manual just click here."

 let linkTextWithColor = "click here"


 let range = (text as NSString).rangeOfString(linkTextWithColor)


 let attributedString = NSMutableAttributedString(string:text)

 attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor() , range: range)


 self.helpText.attributedText = attributedString

self.helpText是一個(gè)UILabel出口。


查看完整回答
反對(duì) 回復(fù) 2019-11-28
  • 3 回答
  • 0 關(guān)注
  • 1744 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)