I updated to Xcode 7 when it was released, but I haven't had a chance to use since the update until now. While making a game, I needed to use arc4random like this:
let RandomPosNmber = arc4random() % 4
When I tried to add it manually, it continued to give me errors. The only options were:
arc4random_addrandom(UnsafeMutablePointer<UInt8>, Int32)
arc4random_buf(UnsafeMutablePointer<Void>, Int)
arc4random_stir()
Did Apple remove arc4random forever or temporarily? What would be an alternative for the code I provided above? If more code is needed then I'll will provide it.