Skip to content

Instantly share code, notes, and snippets.

@morizotter
Last active August 29, 2015 14:06
Show Gist options
  • Save morizotter/62f94cf48880a02d979c to your computer and use it in GitHub Desktop.
Save morizotter/62f94cf48880a02d979c to your computer and use it in GitHub Desktop.
CGFloatの小数点第一位までを文字列として取り出す ref: http://qiita.com/morizotter/items/99acda6bef59971af73a
let someCGFloat: CGFloat = 0.25
var text = String(format: "%.01f", Float(someCGFloat))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment