Last active
July 27, 2018 08:14
-
-
Save Dywane/7f65cbb0461f3c501e3e3407f26a08bd to your computer and use it in GitHub Desktop.
Fade Effect
This file contains 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
case .fade: | |
attributedString.addAttribute(.foregroundColor, value: label.textColor.withAlphaComponent(0), range: NSRange(location: 0, length: attributedString.length)) | |
let displayInterval = duration / TimeInterval(attributedString.length) | |
for index in 0..<attributedString.length { | |
delayArray.append(TimeInterval(index) * displayInterval) | |
durationArray.append(duration - delayArray[index]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment