Cast NSValue to CMTimeRange type swift 5.3

298 Views Asked by At

Swift 5.0 normally cast NSValue to CMTimeRange type, it does not supported in swift 5.3? For example this worked correctly in Xcode 11.7 (Swift 5.0)

let nsValue = NSValue(timeRange: CMTimeRange(start: CMTime(seconds: 12, preferredTimescale: 1), duration: CMTime(seconds: 22, preferredTimescale: 1)))
let value = nsValue as? CMTimeRange

But fails in Xcode 12 (Swift 5&) and show warning:

Cast from 'NSValue' to unrelated type 'CMTimeRange' always fails
2

There are 2 best solutions below

0
On

dharmon is correct:

iOS13: let value = nsValue as? CMTimeRange

iOS14: let value = nsValue.timeRangeValue

1
On

NSValue has timeRangeValue which returns CMTimeRange without explicit cast.