当我使用这种方法时,我的项目将无法编译,但是无论何时删除它,都不会出错,我很困惑为什么会这样。这就是我正在使用的

func animateNode(object: AnyObject){
    AnyObject.animate(withDuration: 1.0, animations: {
        var objFrame = object.frame
        objFrame.origin.y -= objFrame.size.height

        object.frame = objFrame

    },completion: { finished in
        print("Animation Complete")
    })
}

最佳答案

Swift 3

看一下括号。

AnyObject.animate(withDuration: 1.0, animations: {
    // Code ...
}) { finished in
    // Code ...
    print("Animation Complete")
}

希望对您有所帮助。

09-06 11:11