我只是想制作一个非常简单的动画来移动UIButton
。
我有这段代码:
UIView.animateWithDuration(2.0, animations: {
shieldButton!.frame.origin.x += shieldButton!.bounds.width
}, completion: { finished in
shieldButton!.hidden = true
})
但是按钮从移动我希望它移动到它的原始位置......
我真的不明白......