Last active
November 6, 2018 19:07
-
-
Save vialyx/7e82404453be43000af91f59734f6ead to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
........ | |
} else { | |
// Check animations in label layer | |
guard label.layer.animationKeys()?.isEmpty ?? true else { | |
// Clear existed animations | |
label.layer.removeAllAnimations() | |
// Backup center position | |
label.center = CGPoint(x: view.center.x, y: label.center.y) | |
return | |
} | |
UIView.animate(withDuration: 0.5, | |
........ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment