Swift 3在UITextView中更改所选文本的颜色

时间:2017-04-25 11:27:54

标签: swift3 uitextview textcolor

我刚从swift 2.3将代码更改为Swift 3。以下代码适用于swift 2.3,但swift 3没有效果。

我想开发一个自定义文本编辑器。并让用户选择文本并更改其颜色。为此,我正在使用此代码。

let selectedRange = textView.selectedRange

        let currentAttr = textView.textStorage.attributes(at: selectedRange.location, effectiveRange: nil)

        var attrName = NSForegroundColorAttributeName

        if !isForeGround{
            attrName = NSBackgroundColorAttributeName
        }

        if currentAttr[attrName] == nil || currentAttr[attrName] as! UIColor != selectedUIColor{

            let dict = [attrName:selectedUIColor]

            let currentFont = currentAttr[NSFontAttributeName]
            let fontDescriptor = (currentFont! as AnyObject).fontDescriptor
            let updatedFont = UIFont(descriptor: fontDescriptor!, size: 0.0)
            let dict2 = [NSFontAttributeName: updatedFont]

            textView.textStorage.beginEditing()

            if currentAttr.count>0{
                textView.textStorage.addAttributes(dict, range: selectedRange)
            }else{
                textView.textStorage.setAttributes(dict, range: selectedRange)
            }
            textView.textStorage.addAttributes(dict2, range: selectedRange)
            textView.textStorage.endEditing()
        }

成功运行,但对文字颜色没有影响。

2 个答案:

答案 0 :(得分:0)

这对我有用。

首先,您需要捕获所选文本:

let selectedText = textView.selectedRange

然后,您创建属性:

let myAttribute = [ NSForegroundColorAttributeName: selectedUIColor]

最后:

textView.textStorage.addAttributes(myAttribute, range: selectedText)

这必须在任何发件人调用的动作中

希望它也适合你! 此致

答案 1 :(得分:0)

可以使用

更改所选文本
self.textView.tintColor = .red