I just started programming and following a tutorial online I was unable to create this animation. Can anyone tell me why it's saying:
Nil is not compatible with expected argument type UIViewAnimationOptions
and how to fix it?
view.addSubview(myFirstLabel)
UIView.animateWithDuration(0.5, delay: 0.0, usingSpringWithDamping: 0.0, initialSpringVelocity: 0.0, options: nil, animations: {
self.myFirstLabel.center = CGPoint(x: 100, y:40 + 200)
}, completion: nil)
You may replace options: nil
with options: []
should make the error goes way.
Good luck !
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