Blue Yeti Microphone
Rode Stand
Spider Shock Mount
Mac Keyboard Cover
Screenflow - recording software
Generating a Random Number in Swift
Generating a random number in swift is easy. This tutorial will cover generating a random int, double, float and CGFloat using simple functions. To generate a random integer use the following function func randomInt(min: Int, max: Int) -> Int { return min + Int(arc4random_uniform(UInt32(max – min + 1))) } Then you simply can generate a […]