gpt4 book ai didi

ios - 如何动态计算具有行间距的nsattributed字符串的高度

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

我正在尝试计算具有 LineSpacing 属性的 UILabel 的高度。奇怪的是,正常 label.text 的高度计算值低于 label.attributedText 及其行高。看起来我做错了什么,但找不到什么,所以请帮忙 :D。

提供的代码是专门为SO编写的,简洁明了,在我的项目中实现不同。

extension NSAttributedString {
func heightWithWidth(width: CGFloat) -> CGFloat {
let maxSize = CGSize(width: width, height: CGFloat.max)

let boundingBox = self.boundingRectWithSize(maxSize, options: [.UsesLineFragmentOrigin, .UsesFontLeading, .UsesDeviceMetrics], context: nil)

return boundingBox.height
}
}

extension UILabel {

func getHeightWithGivenWidthAndLineHeight(lineHeight: CGFloat, labelWidth: CGFloat) -> CGFloat {
let text = self.text
if let text = text {
let attributeString = NSMutableAttributedString(string: text)
let style = NSMutableParagraphStyle()

style.lineSpacing = lineHeight
attributeString.addAttribute(NSParagraphStyleAttributeName, value: style, range: NSMakeRange(0, text.characters.count))
let height = attributeString.heightWithWidth(labelWidth)
self.attributedText = attributeString
return height
}
return 0
}

我称之为

let contentHeight = contentLabel.text! == "" ? 0 : contentLabel.getHeightWithGivenWidthAndLineHeight(3, labelWidth: labelWidth)

使用普通字符串(无间距)效果很好,当我将 attributedstring 与 lineSpacing 一起使用时,它无法计算出正确的值。

最佳答案

您可以只使用 UILabel 的 sizeThatFits。例如:

    let text = "This is\nSome\nGreat\nText"

let contentHeight = contentLabel.text! == "" ? 0 : contentLabel.getHeightWidthGivenWidthAndLineHeight(6, labelWidth: labelWidth)
//returns 73.2

只是设置

    contentLabel.attributedText = contentLabel.attributedString //attributedString is same as getHeightWidthGivenWidthAndLineHeight

let size = contentLabel.sizeThatFits(contentLabel.frame.size)
//returns (w 49.5,h 99.5)

添加到您的扩展中的 attributedString 代码,如果您需要查看:

var attributedString:NSAttributedString?{
if let text = self.text{
let attributeString = NSMutableAttributedString(string: text)
let style = NSMutableParagraphStyle()

style.lineSpacing = 6
attributeString.addAttribute(NSParagraphStyleAttributeName, value: style, range: NSMakeRange(0, text.characters.count))
return attributeString
}
return nil
}

关于ios - 如何动态计算具有行间距的nsattributed字符串的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36649858/

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