When I was looking for a CALayer animation, I found solutions like this one:
let basicAnimation = CABasicAnimation(keyPath: "opacity")
basicAnimation.fromValue = 0
basicAnimation.toValue = 1
basicAnimation.duration = 0.3
add(basicAnimation, forKey: "opacity")
But fromValue and toValue are type of Any, and as a key we can use any string, which is not safe. Is there a better way to do so using newest Swift features?
I came up with the solution where usage is pretty simple:
And the solution code is:
Pros:
Cons: