Skip to content

Instantly share code, notes, and snippets.

View magicmikek's full-sized avatar
🎯
Focusing

Mike Koene magicmikek

🎯
Focusing
View GitHub Profile
@magicmikek
magicmikek / Gif-CALayer.swift
Created January 25, 2019 14:12
Add Gif to CALayer for Video Overlay
func startGifAnimation(with url: URL?, in layer: CALayer?) {
let animation: CAKeyframeAnimation? = animationForGif(with: url)
if let animation = animation {
layer?.add(animation, forKey: "contents")
}
}
func animationForGif(with url: URL?) -> CAKeyframeAnimation? {
let animation = CAKeyframeAnimation(keyPath: "contents")
We couldn’t find that file to show.