Yup, not much else to add. Here it is: let randomColor = NSColor(red: CGFloat(drand48()), green: CGFloat(drand48()), blue: CGFloat(drand48()), alpha: 1.0) For iOS developers out there just change NSColor to UIColor. Marc PS: Drand48 will create a random number between 0 and 1.
Monthly Archives: October 2015
Get NSDate Day, Month or Year in Swift 2.0
Looking for Swift 3.0 version? -> Click here Well, having recharged batteries after vacation I’m back into coding! And yet again I was faced with another simple problem: how to get the day, month or year from a date. This is the simpler solution I’ve found in Swift 2: //Here I’m creating the calendar …
Continue reading “Get NSDate Day, Month or Year in Swift 2.0”