NSTextAttachment 禁止拖动
2022-01-20 本文已影响0人
th先生
if (@available(iOS 11.0, *)) {
_textView.textDragInteraction.enabled = NO;
}
另外在YYLable上面展示NSTextAttachment
的NSAttributedString
,需要将NSAttributedString
转成YYTextAttachment
。
if (@available(iOS 11.0, *)) {
_textView.textDragInteraction.enabled = NO;
}
另外在YYLable上面展示NSTextAttachment
的NSAttributedString
,需要将NSAttributedString
转成YYTextAttachment
。