作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当 DTAttributedTextView 的框架更改时, View 内的内容(文本)不会重新布局。我的 tableView 单元格中有 TextView ,其高度由布局约束指定,我在代码中更改了该值。宽度会根据单元格宽度的约束自动变化。
我尝试手动调用setNeedsLayout
、layoutIfNeeded
、relayoutText
、setNeedsDisplay
。似乎没有什么帮助。为什么内容布局会这样锁定?
这似乎适用于高度,但不适用于宽度:
override func layoutSubviews() {
super.layoutSubviews()
comment.attributedTextContentView.layoutFrame = DTCoreTextLayoutFrame(
frame: comment.frame,
layouter: comment.attributedTextContentView.layouter)
comment.relayoutText()
}
最佳答案
调用relayoutText之前需要将layouter设置为nil
comment.attributedTextContentView.layoutFrame = DTCoreTextLayoutFrame(
frame: comment.frame,
layouter: comment.attributedTextContentView.layouter)
//gets rid of cached layouter
comment.layouter = nil
comment.relayoutText()
关于ios - DTAttributedTextView 不重新布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33691992/
当 DTAttributedTextView 的框架更改时, View 内的内容(文本)不会重新布局。我的 tableView 单元格中有 TextView ,其高度由布局约束指定,我在代码中更改了该
我是一名优秀的程序员,十分优秀!