Last active
July 27, 2018 08:14
-
-
Save Dywane/de5bb0cbae15232818d7428ca63132c8 to your computer and use it in GitHub Desktop.
Shine 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 .shine: | |
attributedString.addAttribute(.foregroundColor, value: label.textColor.withAlphaComponent(0), range: NSRange(location: 0, length: attributedString.length)) | |
for index in 0..<attributedString.length { | |
delayArray.append(TimeInterval(arc4random_uniform(UInt32(duration) / 2 * 100) / 100)) | |
let remain = duration - Double(delayArray[index]) | |
durationArray.append(TimeInterval(arc4random_uniform(UInt32(remain) * 100) / 100)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment