I have this expression which returns a UInt32:
UInt32
let randomLetterNumber = arc4random()%26
I want to be able to use the number in
You can do
let u: UInt32 = 0x1234abcd let s: Int32 = Int32(bitPattern: u)