我正在创建 UIView 动画:
UIView.animateWithDuration(0.1,
delay: 0,
options: (.AllowUserInteraction | .Repeat | .Autoreverse),
animations:
{ () -> Void in
// Animate
},
completion: nil)
但是编译器会说“找不到成员“Autoreverse””,或者最后是哪个位掩码,除非有一个选项。Swift 2 中的语法有变化吗?我在 Swift 文档中看不到任何内容,我也不记得 WWDC 演示文稿中的任何内容。
或者它可能只是一个错误?
提前致谢