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
dharmon is correct:
iOS13: let value = nsValue as? CMTimeRange
iOS14: let value = nsValue.timeRangeValue