Skip to content

Instantly share code, notes, and snippets.

@Dywane
Last active July 27, 2018 08:10
Show Gist options
  • Save Dywane/10f3622526beaacdd26b2e73a3ec464f to your computer and use it in GitHub Desktop.
Save Dywane/10f3622526beaacdd26b2e73a3ec464f to your computer and use it in GitHub Desktop.
Update Core Code
var percent = (CGFloat(currentTime - beginTime) - CGFloat(delayArray[index])) / CGFloat(durationArray[index])
percent = fmax(0.0, percent)
percent = fmin(1.0, percent)
attributedString.addAttribute(.baselineOffset, value: (percent - 1) * label!.font.lineHeight, range: range)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment