Skip to content

Instantly share code, notes, and snippets.

@Dywane
Last active July 27, 2018 08:14
Show Gist options
  • Save Dywane/de5bb0cbae15232818d7428ca63132c8 to your computer and use it in GitHub Desktop.
Save Dywane/de5bb0cbae15232818d7428ca63132c8 to your computer and use it in GitHub Desktop.
Shine Effect
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