Skip to content

Instantly share code, notes, and snippets.

@pkrll
Created January 8, 2016 19:17
Show Gist options
  • Save pkrll/377cc07362a884aa6112 to your computer and use it in GitHub Desktop.
Save pkrll/377cc07362a884aa6112 to your computer and use it in GitHub Desktop.
import Foundation
class NumberToIndexTransformer: NSValueTransformer {
func decrementNumber(value: AnyObject) -> AnyObject {
if var value = value as? NSNumber {
value = Int(value) - 1
return value
}
return value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment