Created
August 12, 2020 15:10
-
-
Save h4yder/193b9c7cb4f27fda7d71552bb2db1b1a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
private func incrementSeekValue() -> String { | |
var valueString = accumulationString | |
valueString.removeFirst() | |
if var value = Int(valueString) { | |
value += interval | |
return "+" + String(value) | |
} | |
return accumulationString | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment