我有这个代码用于动画表:
UIView.animateWithDuration(0.33, delay: 0, options: UIViewAnimationOptions.CurveEaseOut | UIViewAnimationOptions.AllowUserInteraction, animations: { () -> Void in
self.myTableView.setContentOffset(CGPoint(x: 0, y: offSetY), animated: false)
}, completion: nil)
我希望有其他选项UIViewAnimationOptions.AllowUserInteraction
,但我收到错误:" |不能应用于两个UIViewAnimationOptions操作数"。我该如何添加?在objective-c中工作。
答案 0 :(得分:3)
在 <span class="className">
中你必须以这种方式写作。 Swift 2
具有更新的语法。
OptionSetType