ibireme / YYText

Powerful text framework for iOS to display and edit rich text.
MIT License
8.85k stars 1.69k forks source link

关于yy_attachmentString #948

Open Gaozn opened 3 years ago

Gaozn commented 3 years ago

let imgText = NSAttributedString.yy_attachmentString(withContent: img, contentMode: .center, attachmentSize: img?.size ?? CGSize.zero, alignTo: Font(size: 15), alignment: .center) 我使用图片生成的NSAttributedString ,当我使用UILabel时加载不出来

HMWDavid commented 3 years ago

let imgText = NSAttributedString.yy_attachmentString(withContent: img, contentMode: .center, attachmentSize: img?.size ?? CGSize.zero, alignTo: Font(size: 15), alignment: .center) 我使用图片生成的NSAttributedString ,当我使用UILabel时加载不出来

YYLabel -> UILabel

tounaobun commented 3 years ago

UILabel只识别NSTextAttachment.

CirclesInTheSand commented 2 years ago

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.