animate uiview swift2 animatewithduration

animate - uiview animation swift 4



ConfiguraciĆ³n de opciones en animateWithDuration en Swift 2 (1)

La sintaxis para combinar OptionSetType ha cambiado, usted podrá hacerlo así:

UIView.animateWithDuration(0.5, delay: 0.4, options: [.Repeat, .CurveEaseOut, .Autoreverse], animations: { self.password.center.x += self.view.bounds.width }, completion: nil)

Estoy animando un campo de texto con el siguiente código:

UIView.animateWithDuration(0.5, delay: 0.4, options: .Repeat | .Autoreverse | .CurveEaseOut, animations: { self.password.center.x += self.view.bounds.width }, completion: nil)

Aparece el error Could not find member ''Repeat''

El código solo funciona si configuro solo una opción. ¿Por qué no me deja configurar múltiples opciones?