向动画中添加两个UIViewAnimationOptions(Swift)

时间:2015-12-24 07:55:57

标签: ios swift uiviewanimation

我有这个代码用于动画表:

    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中工作。

1 个答案:

答案 0 :(得分:3)

<span class="className"> 中你必须以这种方式写作。 Swift 2具有更新的语法。

OptionSetType