Skip to content

Instantly share code, notes, and snippets.

@flashspys
flashspys / Random.swift
Created September 20, 2014 09:48
simple swift random class
import UIKit
class Random {
class func randomInt() -> Int {
return Int(arc4random());
}
class func randomIntFrom(from: Int) -> Int {