Trying to call dispatch_time in Swift is doing my head in, here\'s why:
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 10 * NSEC_PER_SEC), dispatch_get_mai
To construct an Int64 using the bits of a UInt64, use the init seen here: https://developer.apple.com/reference/swift/int64/1538466-init
Int64
UInt64
init
let myInt64 = Int64(bitPattern: myUInt64)