gpt4 book ai didi

ios - 在 NSTextStorage 范围内崩溃

转载 作者:搜寻专家 更新时间:2023-10-31 22:53:15 31 4
gpt4 key购买 nike

我有一个 UITextView,它应该接收从 HTML 收缩的 NSAttributesString。最终结果是带有自定义链接下划线的黑色文本。我快崩溃了。

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

代码如下:

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()
}
}
}

当我评论这一行时:textView.text = text

并取消注释,所有崩溃:textView.attributedText = htmlStyleAttributeText(text: text)

最佳答案

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

=>

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

因为第一个返回 {0,87} 而第二个返回 {0,50}。这是正常的,“html 标签”已被解释并从最终字符串中删除以显示。

关于ios - 在 NSTextStorage 范围内崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55279279/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com