Skip to content

Instantly share code, notes, and snippets.

@MarkDavies0
MarkDavies0 / buttonAnimationExtension.swift
Last active September 17, 2020 18:16 — forked from SAllen0400/buttonAnimationExtension.swift
Core Animation on UIButton Example
// Swift 4
extension UIButton {
func pulsate() {
let pulse = CASpringAnimation(keyPath: "transform.scale")
pulse.duration = 0.6
pulse.fromValue = 0.95
pulse.toValue = 1.0