ios – Swift – NSMutableAttributedString更改UITextView中的所有文本

前端之家收集整理的这篇文章主要介绍了ios – Swift – NSMutableAttributedString更改UITextView中的所有文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下载我创建的示例

Example Link

我正在添加一个链接到我的UITextView,如下所示:

  1. let systemFont = self.text.font!
  2. let linkAttributes = [
  3. NSFontAttributeName : systemFont,NSLinkAttributeName: NSURL(string: alertController.textFields![0].text!)!] as [String : Any]
  4.  
  5. let myAttributes2 = [ NSForegroundColorAttributeName: customGreen]
  6.  
  7. let attributedString = NSMutableAttributedString(string: "\(urlName)")
  8.  
  9. // Set the 'click here' substring to be the link
  10. attributedString.setAttributes(linkAttributes,range: NSMakeRange(0,urlName.characters.count))//(0,urlName.characters.count))
  11.  
  12. self.text.linkTextAttributes = myAttributes2
  13. self.text.textStorage.insert(attributedString,at: self.text.selectedRange.location)
  14.  
  15. let cursor = NSRange(location: self.text.selectedRange.location + "\(urlName)".characters.count,length: 0)
  16. self.text.selectedRange = cursor
  17. // self.text.font = systemFont

但插入后,它会将UITextView中的所有当前文本更改为相同的字体.

因此,例如,如果我有一些粗体文本和一些更多的文本是Italic,在我添加url(这是系统字体)后,它将所有粗体/斜体文本重置为系统字体….

如果有人知道如何保留以前文本的当前字体,我真的很感激帮助.

如需进一步说明,请在下方发表评论

非常感谢任何有帮助的人!

更新

我正在更改textDidChange中的文本

  1. if text == " " {
  2. // let systemFont = self.text.font!
  3. // let linkAttributes = [NSFontAttributeName : systemFont]
  4. let attributes = [NSForegroundColorAttributeName: UIColor.black,NSFontAttributeName: self.text.font!] as [String : Any]
  5.  
  6. let attributedString = NSMutableAttributedString(string: text,attributes: attributes)
  7. self.text.textStorage.insert(attributedString,at: range.location)
  8. let cursor = NSRange(location: self.text.selectedRange.location+1,length: 0)
  9. textView.selectedRange = cursor
  10. return false
  11. }

我有这样所以添加URL后我创建一个空格并重置字体,所以我不继续键入作为URL链接…可能是问题,但当我键入正常,并没有设置URL链接文本没有’腾出空间……

解决方法

  1. let urlName = "google"
  2.  
  3. @IBAction func btnPressed(_ sender: Any) {
  4.  
  5. let systemFont = UIFont.systemFont(ofSize: 11)
  6. let linkAttributes = [
  7. NSFontAttributeName : systemFont,NSLinkAttributeName: NSURL(string: "https://www.google.com")!] as [String : Any]
  8.  
  9. let myAttributes2 = [NSForegroundColorAttributeName: UIColor.green]
  10.  
  11. let attributedString = NSMutableAttributedString(string: "\(urlName)")
  12.  
  13. attributedString.setAttributes(linkAttributes,urlName.characters.count))
  14.  
  15. self.text.linkTextAttributes = myAttributes2
  16. self.text.textStorage.insert(attributedString,at: self.text.selectedRange.location)
  17.  
  18. let cursor = NSRange(location: self.text.selectedRange.location + "\(urlName)".characters.count,length: 0)
  19. self.text.selectedRange = cursor
  20. }

如果要以编程方式添加文本,则应如何更新textView.
在这种情况下,请勿使用textViewDidChange(_ :)委托方法.

UPDATE

我已从DropBox下载了您的代码并对其进行了一些更改.
所以我在这里改变viewDidLoad()中的textView文本.
我创建了两个常量,以便在代码中再次使用它们,fontAttr是具有名称和大小的原始字体,fontColorAttrBlue是原始字体颜色.

  1. let fontAttr = UIFont(name: "Helvetica-Bold",size: 20)
  2. let fontColorAttrBlue = UIColor.blue
  3.  
  4. override func viewDidLoad() {
  5. super.viewDidLoad()
  6.  
  7. let attrString = NSMutableAttributedString(string: "Hello World,How are you?",attributes: [NSFontAttributeName : fontAttr!,NSForegroundColorAttributeName: fontColorAttrBlue ])
  8. self.textView.delegate = self // you can set the delegate from the storyboard.
  9. self.textView.attributedText = attrString
  10. }

我从webLink(_ sender:AnyObject)动作方法删除了这行代码self.textView.font = systemFont,这样就不会改变textView的字体.

最后在textView(_:shouldChangeTextIn:replacementText :)方法中,而不是检查用户是否已输入“”字符串我正在检查用户是否输入了任何字符串并重新使用我在开头创建的字体属性,以便用户链接之后输入任何类型的文本它将是原始文本而不是为类似文本分配的文本.

  1. func textView(_ textView: UITextView,shouldChangeTextIn range: NSRange,replacementText text: String) -> Bool {
  2. if text.characters.count > 0 {
  3. let attributedString = NSMutableAttributedString(string: text,attributes: [NSFontAttributeName : self.fontAttr!,NSForegroundColorAttributeName: self.fontColorAttrBlue])
  4. self.textView.textStorage.insert(attributedString,at: range.location)
  5. let cursor = NSRange(location: self.textView.selectedRange.location+1,length: 0)
  6. textView.selectedRange = cursor
  7. return false
  8. }
  9. return true
  10. }

猜你在找的iOS相关文章