gpt4 book ai didi

uiview - 在 Swift 2 中设置 animateWithDuration 中的选项

转载 作者:行者123 更新时间:2023-12-02 09:57:10 26 4
gpt4 key购买 nike

我使用以下代码为文本字段设置动画:

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

我收到错误找不到成员“重复”

只有当我只设置一个选项时,该代码才有效。 为什么它不允许我设置多个选项?

最佳答案

组合OptionSetType的语法已更改,您将能够这样做:

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

关于uiview - 在 Swift 2 中设置 animateWithDuration 中的选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31540266/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com