I used to use the following in Objective-C:
double currentTime = CFAbsoluteTimeGetCurrent();
// self.startTime is called before, like
// self.startTime = CFAbsoluteTimeGetCurrent();
double elapsedTime = currentTime - self.startTime;
// Convert the double to milliseconds
unsigned long long milliSecs = (unsigned long long)(elapsedTime * 1000);
In my swift code I have at the moment:
let currentTime: Double = CFAbsoluteTimeGetCurrent()
let elapsedTime: Double = currentTime - startTime
let milliSecs: CUnsignedLongLong = elapsedTime * 1000
However I get the error that a double
cannot be converted to a CUnsignedLongLong
which makes sense. Is there a way to cast it like in Objective-C though? Is there a way around this?
Is there a way to cast it like in Objective C though? Is there a way around this?
let milliSecs = CUnsignedLongLong(elapsedTime * 1000)
Or
let milliSecs = UInt64(elapsedTime * 1000)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With