Nil is not compatible with expected argument type UIViewAnimationOptions

Brenner picture Brenner · Sep 17, 2015 · Viewed 25.9k times · Source

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)

Answer

AaoIi picture AaoIi · Sep 20, 2015

You may replace options: nil with options: [] should make the error goes way.

Good luck !