Skip to content

Instantly share code, notes, and snippets.

@farhan-syed
Created October 13, 2017 09:21
Show Gist options
  • Save farhan-syed/f37f086672d8aec821190bd4fddb1c10 to your computer and use it in GitHub Desktop.
Save farhan-syed/f37f086672d8aec821190bd4fddb1c10 to your computer and use it in GitHub Desktop.
extension UILabel {
func formatNumber(number: NSNumber) {
let formatter = NumberFormatter()
formatter.numberStyle = .decimal
let numberAsString = formatter.string(from: number)
self.text = numberAsString
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment