Swift3:NSMutableAttributeString的Range和NSRange問題

本文下方封裝了簡單的屬性字符串方法。封裝中只實現了最基礎的功能,用來設置一個string中的某些subString特殊顯示。調用方法爲鏈式調用。

—> 下面來說說使用NSMutableAttributeString遇到的問題

要特殊顯示的subString可以調用

open func addAttributes(_ attrs: [String : Any] = [:], range: NSRange)

來設置,注意這裏的range類型是NSRange,我們在獲取這個range的時候想當然會這樣做:

//其實這時候獲取的range類型是Range
let range = attributeStr.string.range(of: "subString")

Range是無法通過 as? 強制轉換到NSRange的。

方式1. 比較簡單的處理方式就是

//1.先把String轉換成 NSStiring
let nsString = NSString(string: attributeStr.string)

//2.NSString中的range方法獲取到的是NSRange類型
let nsRange = nsString.range(of: "subString")

方式2. 另外比較複雜的處理就是把Range轉換成NSRange了:

//range轉換爲NSRange  
//擴展的是String類,不可改爲NSRange或者Range的擴展,因爲samePosition,utf16是String裏的
extension String {
    func nsRange(from range: Range<String.Index>) -> NSRange {
        let from = range.lowerBound.samePosition(in: utf16)
        let to = range.upperBound.samePosition(in: utf16)
        return NSRange(location: utf16.distance(from: utf16.startIndex, to: from),
                       length: utf16.distance(from: from, to: to))
    }
}
//NSRange轉化爲range
//擴展的是String類,不可改爲NSRange或者Range的擴展,因爲utf16是String裏的
extension String {
    func range(from nsRange: NSRange) -> Range<String.Index>? {
        guard
            let from16 = utf16.index(utf16.startIndex, offsetBy: nsRange.location, limitedBy: utf16.endIndex),
            let to16 = utf16.index(from16, offsetBy: nsRange.length, limitedBy: utf16.endIndex),
            let from = String.Index(from16, within: self),
            let to = String.Index(to16, within: self)
            else { return nil }
        return from ..< to
    }
}

我的簡書上同步更新了本文章,點擊查看


最終代碼:Github代碼地址

import Foundation
import UIKit
class TAttributeString {

    var attributeStr : NSMutableAttributedString =  NSMutableAttributedString()

    //設置整體的字符串
    func setString(string: String,color: UIColor, fontSize: CGFloat) -> Self {

        return setString(string: string, color: color, font: UIFont.systemFont(ofSize: fontSize))
    }

    func setString(string: String, color: UIColor, font: UIFont) -> Self {

        let inceptionAttStr = NSAttributedString(string: string, attributes: [NSFontAttributeName:font,NSForegroundColorAttributeName:color])

        attributeStr.setAttributedString(inceptionAttStr)

        return self
    }
}

//設置屬性字符串中的 特殊顯示的字符
extension TAttributeString {

    func height(string: String, color: UIColor) -> Self {
        let nsString = NSString(string: attributeStr.string)

        attributeStr.setAttributes([NSForegroundColorAttributeName:color], range: nsString.range(of: string))

        return self
    }

    func height(string: String, color: UIColor, fontSize: CGFloat) -> Self {

        return height(string: string, color: color, font: UIFont.systemFont(ofSize: fontSize))
    }

    func height(string: String, color: UIColor, font: UIFont) -> Self {

        let nsString = NSString(string: attributeStr.string)

        attributeStr.setAttributes([NSFontAttributeName:font, NSForegroundColorAttributeName:color], range: nsString.range(of: string))

        return self
    }

}

調用方式

 label.attributedText = TAttributeString().setString(string: "swift:這裏只是封裝了最常用的功能,採用簡單的鏈式調用,核心方法很少,都是一些方便調用的衍生方法", color: UIColor.black, fontSize: 14).height(string: "swift:", color: UIColor.red, fontSize: 20).height (string: "鏈式調用", color: UIColor.blue, font: UIFont.boldSystemFont(ofSize: 10)).attributeStr

效果:

顯示效果

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章