缩小和变换 UIButton

Shrink and Transform UIButton

我正在尝试在单击时将我的 UIButton 左移,同时我希望它也缩小。我试过下面的代码,它确实向左变换,但我不知道如何缩小按钮。我如何缩小和转换 UIButton

@IBAction func joinCircleButton(sender: AnyObject) {
    let button = sender as UIButton

    UIView.animateWithDuration(1.0, animations:{
        button.frame = CGRectMake(button.frame.origin.x - 75, button.frame.origin.y,button.frame.size.width, button.frame.size.height)
    })

}

您可以在动画块中添加此代码。将按钮缩放到其大小的一半。

button.transform = CGAffineTransformMakeScale(0.5, 0.5);