Created
August 13, 2019 06:27
-
-
Save bharathreddys77/5961ec6810e6b09815b7d735949c751a 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
protocol viewAnimatable { | |
func animateView(duration:TimeInterval) | |
} | |
extension viewAnimatable where Self:UIView { | |
func animateView(duration:TimeInterval) { | |
UIView.animate(withDuration: duration, animations: { | |
self.alpha = 0.5 | |
}) { (_) in | |
self.alpha = 1.0 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment