Crashing on range on NSTextStorage

只愿长相守 提交于 2019-12-12 16:04:14

问题


I have a UITextView that should receive NSAttributesString contracted from HTML. The end result is black text with custom underline for links. I am crashing on range.

Terminating app due to uncaught exception 'NSRangeException', reason: 'NSMutableRLEArray objectAtIndex:effectiveRange:: Out of bounds'

Here is the code:

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let text = "random text <a href='http://www.google.com'>http://www.google.com </a> more random text"

        let storage = NSTextStorage()
        let layout = UnderlineLayout()
        storage.addLayoutManager(layout)
        let container = NSTextContainer()
        layout.addTextContainer(container)

        let textView = UITextView(frame: CGRect(x: 30, y: 380, width: 300, height: 200), textContainer: container)
        textView.isUserInteractionEnabled = true
        textView.isEditable = false
        textView.textContainerInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
        textView.text = text
//        textView.attributedText = htmlStyleAttributeText(text: text)
        textView.backgroundColor = UIColor.white
        textView.textColor = UIColor.black

        let underLineColor: UIColor = UIColor(red: 245/255, green: 190/255, blue: 166/255, alpha: 1)


        let attributes = [NSAttributedString.Key.underlineStyle.rawValue: 0x15,
                          NSAttributedString.Key.underlineColor: underLineColor,
                          NSAttributedString.Key.font: UIFont.systemFont(ofSize: 25),
                          NSAttributedString.Key.baselineOffset:0] as! [NSAttributedString.Key : Any]

        let rg = NSRange(text.startIndex..., in: text)

        storage.addAttributes(attributes, range: rg)
        view.addSubview(textView)
    }

    public func htmlStyleAttributeText(text: String) -> NSMutableAttributedString? {

        if let htmlData = text.data(using: .utf8) {

            let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html, NSAttributedString.DocumentReadingOptionKey.characterEncoding: String.Encoding.utf8.rawValue]
            let attributedString = try? NSMutableAttributedString(data: htmlData, options: options, documentAttributes: nil)

            return attributedString
        }
        return nil
    }
}

import UIKit

class UnderlineLayout: NSLayoutManager {
    override func drawUnderline(forGlyphRange glyphRange: NSRange, underlineType underlineVal: NSUnderlineStyle, baselineOffset: CGFloat, lineFragmentRect lineRect: CGRect, lineFragmentGlyphRange lineGlyphRange: NSRange, containerOrigin: CGPoint) {
        if let container = textContainer(forGlyphAt: glyphRange.location, effectiveRange: nil) {
            let boundingRect = self.boundingRect(forGlyphRange: glyphRange, in: container)
            let offsetRect = boundingRect.offsetBy(dx: containerOrigin.x, dy: containerOrigin.y)

            let left = offsetRect.minX
            let bottom = offsetRect.maxY
            let width = offsetRect.width
            let path = UIBezierPath()
            path.lineWidth = 4
            path.move(to: CGPoint(x: left, y: bottom))
            path.addLine(to: CGPoint(x: left + width, y: bottom))
            path.stroke()
        }
    }
}

When I comment this line: textView.text = text

And uncomment this, all crashes: textView.attributedText = htmlStyleAttributeText(text: text)


回答1:


let rg = NSRange(text.startIndex..., in: text)

=>

let rg = NSRange(text.startIndex..., in: textView.attributedText!.string)

Because the first one returns {0,87} and the second one {0,50}. That's normal, the "html tags" have been interpreted and remove from the final string to show.



来源:https://stackoverflow.com/questions/55279279/crashing-on-range-on-nstextstorage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!