Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created August 10, 2020 12:14
Show Gist options
  • Select an option

  • Save foxicode/a1dc6dda02432a22487ae6aac274f7a0 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/a1dc6dda02432a22487ae6aac274f7a0 to your computer and use it in GitHub Desktop.
Converting Double to String
import Foundation
extension Double {
func toString() -> String {
String(format: "%.02f", self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment