Skip to content

iOS: UITextView增加视图附件(ViewAttachment)特性, 其他优化.

Compare
Choose a tag to compare
@lixiang1994 lixiang1994 released this 10 Jul 08:13
· 98 commits to master since this release

New Version ヾ(@^▽^@)ノ 💥

特性:

ViewAttachment 支持将自定义视图添加到富文本中 并在UITextView中显示, 支持更改视图大小.

注意: 不要擅自修改自定义视图的centertransform属性.

优化:

附件垂直居中对齐 (应该是全网最准确的居中方案 😂不是无脑-4)

AttributedString.ViewAttachment: (Only supports iOS: UITextView)

textView.attributed.text = """

\(.view(xxxxView))

\(.view(xxxxView, .custom(size: .init(width: 200, height: 200))))

\(.view(xxxxView, .proposed(.center))).

"""

WX20200710-160829@2x