Skip to content

Instantly share code, notes, and snippets.

@DisappearPing
Created September 19, 2016 01:30
Show Gist options
  • Select an option

  • Save DisappearPing/9ea534fa228e8764fd5a66fb84555f87 to your computer and use it in GitHub Desktop.

Select an option

Save DisappearPing/9ea534fa228e8764fd5a66fb84555f87 to your computer and use it in GitHub Desktop.
Random Number swift2.2
func randomFromZeroTo(number: Int) -> Int {
return Int(arc4random_uniform(UInt32(number)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment