Open chitvan832 opened 7 years ago
my attempt for this is :
@IBAction func btnActionForHeart(_ sender: UIButton) { centerHeart.animation = "pop" centerHeart.duration = 1.0 centerHeart.curve = "easeIn" centerHeart.animateNext{ self.centerHeart.alpha = 0 self.centerHeart.animate() }
PS : trying to make an instagram like heart animation when we double tap
Alpha isn't a property of spring and you could use centerHeart.animation = "fadeOut" and then animate it rather than setting the alpha
my attempt for this is :
PS : trying to make an instagram like heart animation when we double tap