YYText
YYText copied to clipboard
关于yy_attachmentString
let imgText = NSAttributedString.yy_attachmentString(withContent: img, contentMode: .center, attachmentSize: img?.size ?? CGSize.zero, alignTo: Font(size: 15), alignment: .center) 我使用图片生成的NSAttributedString ,当我使用UILabel时加载不出来
let imgText = NSAttributedString.yy_attachmentString(withContent: img, contentMode: .center, attachmentSize: img?.size ?? CGSize.zero, alignTo: Font(size: 15), alignment: .center) 我使用图片生成的NSAttributedString ,当我使用UILabel时加载不出来
YYLabel -> UILabel
UILabel只识别NSTextAttachment.
When you use yy_attachmentString, you have to use YYLabel or YYTextView, similarily, if your class doesn't contain "yy" prefix, you don't need YYComponent as well. it confused me for a while till I see your issue.