项目作者: namanhams

项目描述 :
NSTextAttachment with remote image URL
高级语言: Swift
项目地址: git://github.com/namanhams/RemoteImageTextAttachment.git
创建时间: 2020-11-26T14:20:03Z
项目社区:https://github.com/namanhams/RemoteImageTextAttachment

开源协议:MIT License

下载


RemoteImageTextAttachment

NSTextAttachment with remote image URL

Usage

  1. let attachment = RemoteImageTextAttachment(imageURL: url, displaySize: CGSize(width: 100, height: 100))
  2. let attributedText = NSMutableAttributedString()
  3. attributedText.append(NSAttributedString(attachment: attachment))
  4. // For UITextView/NSTextView
  5. textView.attributedText = attributedText
  6. // For UILabel
  7. attachment.label = label
  8. label.attributedText = attributedText