2016-09-26 21:01:27 +00:00
|
|
|
/// The protocol that view classes need to conform to to enable animated GIF support.
|
2016-10-01 11:41:22 +00:00
|
|
|
public protocol GIFAnimatable: class {
|
2016-09-26 21:01:27 +00:00
|
|
|
|
|
|
|
/// Responsible for managing the animation frames.
|
|
|
|
var animator: Animator? { get set }
|
|
|
|
|
|
|
|
/// Used for displaying the animation frames.
|
|
|
|
var image: UIImage? { get set }
|
|
|
|
|
|
|
|
/// Notifies the instance that it needs display.
|
|
|
|
var layer: CALayer { get }
|
|
|
|
|
|
|
|
/// View frame used for resizing the frames.
|
|
|
|
var frame: CGRect { get set }
|
|
|
|
|
|
|
|
/// Content mode used for resizing the frames.
|
|
|
|
var contentMode: UIViewContentMode { get set }
|
|
|
|
}
|
2016-10-01 11:41:22 +00:00
|
|
|
|
2016-09-26 21:01:27 +00:00
|
|
|
extension GIFAnimatable {
|
|
|
|
/// Returns the intrinsic content size based on the size of the image.
|
|
|
|
public var intrinsicContentSize: CGSize {
|
|
|
|
return image?.size ?? CGSize.zero
|
|
|
|
}
|
|
|
|
|
2016-10-06 20:49:31 +00:00
|
|
|
/// Returns the active frame if available.
|
|
|
|
public var activeFrame: UIImage? {
|
|
|
|
return animator?.activeFrame()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Total frame count of the GIF.
|
|
|
|
public var frameCount: Int {
|
|
|
|
return animator?.frameCount ?? 0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Introspect whether the instance is animating.
|
|
|
|
public var isAnimatingGIF: Bool {
|
|
|
|
return animator?.isAnimating ?? false
|
|
|
|
}
|
|
|
|
|
2016-09-26 21:01:27 +00:00
|
|
|
/// Prepare for animation and start animating immediately.
|
|
|
|
///
|
2016-10-06 20:49:31 +00:00
|
|
|
/// - parameter imageName: The file name of the GIF in the main bundle.
|
2016-09-26 21:01:27 +00:00
|
|
|
public func animate(withGIFNamed imageName: String) {
|
|
|
|
animator?.animate(withGIFNamed: imageName, size: frame.size, contentMode: contentMode)
|
|
|
|
}
|
|
|
|
|
2016-10-06 20:49:31 +00:00
|
|
|
/// Prepare for animation and start animating immediately.
|
|
|
|
///
|
|
|
|
/// - parameter imageData: GIF image data.
|
|
|
|
public func animate(withGIFData imageData: Data) {
|
|
|
|
animator?.animate(withGIFData: imageData, size: frame.size, contentMode: contentMode)
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Prepares the animator instance for animation.
|
|
|
|
///
|
2016-10-01 11:41:22 +00:00
|
|
|
/// - parameter imageName: The file name of the GIF in the main bundle.
|
2016-09-26 21:01:27 +00:00
|
|
|
public func prepareForAnimation(withGIFNamed imageName: String) {
|
|
|
|
animator?.prepareForAnimation(withGIFNamed: imageName, size: frame.size, contentMode: contentMode)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Prepare for animation and start animating immediately.
|
|
|
|
///
|
2016-10-01 11:41:22 +00:00
|
|
|
/// - parameter imageData: GIF image data.
|
2016-09-26 21:01:27 +00:00
|
|
|
public func prepareForAnimation(withGIFData imageData: Data) {
|
|
|
|
image = UIImage(data: imageData)
|
|
|
|
animator?.prepareForAnimation(withGIFData: imageData, size: frame.size, contentMode: contentMode)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Stop animating and free up GIF data from memory.
|
|
|
|
public func prepareForReuse() {
|
|
|
|
animator?.prepareForReuse()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Start animating GIF.
|
|
|
|
public func startAnimatingGIF() {
|
|
|
|
animator?.startAnimating()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Stop animating GIF.
|
|
|
|
public func stopAnimatingGIF() {
|
|
|
|
animator?.stopAnimating()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Updates the image with a new frame if necessary.
|
|
|
|
public func updateImageIfNeeded() {
|
2016-10-02 23:33:56 +00:00
|
|
|
let frame = animator?.activeFrame() ?? image
|
|
|
|
if image != frame { image = frame }
|
2016-10-01 11:41:22 +00:00
|
|
|
}
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension GIFAnimatable {
|
|
|
|
/// Calls setNeedsDisplay on the layer whenever the animator has a new frame. Should *not* be called directly.
|
2016-10-06 20:49:31 +00:00
|
|
|
func animatorHasNewFrame() {
|
2016-09-26 21:01:27 +00:00
|
|
|
layer.setNeedsDisplay()
|
|
|
|
}
|
|
|
|
}
|