Closed jverkoey closed 7 years ago
let spring = Spring(to: 1, threshold: 0.1, system: coreAnimation) Ambiguous reference to member 'coreAnimation(_:initialValue:)'
Solution is to cast:
let spring = Spring(to: CGFloat(1), threshold: 0.1, system: coreAnimation)
But we should support using literal numbers as well.
Obsolete.
Solution is to cast:
But we should support using literal numbers as well.