我正在尝试使用NSAttributedString原生呈现“亮点”,我注意到它在iOS 10上非常漂亮,在iOS 11上非常无聊。
我可以说iOS 10渲染是正确的。

iOS 10:

ios - NSAttributedString背景颜色渲染iOS 10 VS iOS 11-LMLPHP

iOS 11显然是错误的,但是我想他们出于性能原因决定牺牲一些绘图计算。

iOS 11:

ios - NSAttributedString背景颜色渲染iOS 10 VS iOS 11-LMLPHP

我尝试了各种设置,但要实现“轻松”(似乎不编写任何自定义String绘图代码)以在iOS 11上获得iOS 10渲染似乎似乎是不可能的。

最佳答案

因此,我终于找到了可靠的解决方案,而且实际上很容易。您需要具有LayoutManager,因此最好使用UITextView或自己的自定义文本抽屉。这是我的自定义UITextView子类:

class QuoteTextView: UITextView, NSLayoutManagerDelegate {

    var highlightColor = UIColor.gl_defaultHighlight

    override var text: String! {
        didSet {
            setNeedsDisplay()
        }
    }

    override func awakeFromNib() {
        super.awakeFromNib()

        let padding = textContainer.lineFragmentPadding
        textContainerInset = UIEdgeInsets(top: 0, left: -padding, bottom: 0, right: -padding)
        layoutManager.delegate = self
    }

    override func draw(_ rect: CGRect) {
        super.draw(rect)

        layoutManager.enumerateLineFragments(forGlyphRange: NSMakeRange(0, text.utf16.count)) { (rect1, lineRect, container, range, _) in
            let path = UIBezierPath(rect: CGRect(x: lineRect.origin.x,
                                                 y: lineRect.origin.y - 2,
                                                 width: lineRect.size.width,
                                                 height: lineRect.size.height - 4))
            self.highlightColor.setFill()
            path.fill()
        }
    }

    func layoutManager(_ layoutManager: NSLayoutManager,
                       lineSpacingAfterGlyphAt glyphIndex: Int,
                       withProposedLineFragmentRect rect: CGRect) -> CGFloat {
        return 5
    }

    func layoutManager(_ layoutManager: NSLayoutManager,
                       shouldUse action: NSLayoutManager.ControlCharacterAction,
                       forControlCharacterAt charIndex: Int) -> NSLayoutManager.ControlCharacterAction {
        return .lineBreak
    }
}

关于ios - NSAttributedString背景颜色渲染iOS 10 VS iOS 11,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50912854/

10-13 00:05
查看更多