0

我试图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)
    })

}
4

1 回答 1

2

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

button.transform = CGAffineTransformMakeScale(0.5, 0.5);
于 2015-01-04T08:26:35.957 回答