metatext/Views/UIKit/AnimatedTextAttachment.swift
2021-02-22 15:59:33 -08:00

19 lines
550 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import SDWebImage
import UIKit
final class AnimatedTextAttachment: NSTextAttachment {
var imageURL: URL?
var imageView = SDAnimatedImageView()
var imageBounds: CGRect?
override func image(forBounds imageBounds: CGRect,
textContainer: NSTextContainer?,
characterIndex charIndex: Int) -> UIImage? {
self.imageBounds = imageBounds
return nil // rendered by AnimatingLayoutManager or AnimatedAttachmentLabel
}
}