次のコードでテキストフィールドをアニメーション化しています:
UIView.animateWithDuration(0.5, delay: 0.4,
options: .Repeat | .Autoreverse | .CurveEaseOut, animations: {
self.password.center.x += self.view.bounds.width
}, completion: nil)
エラーが発生しますCould not find member 'Repeat'
このコードは、オプションを 1 つだけ設定した場合にのみ機能します。複数のオプションを設定できないのはなぜですか?