Skip to content

Instantly share code, notes, and snippets.

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