随着时间的推移增加图像大小?

时间:2015-03-28 16:58:43

标签: xcode swift

我的图像需要随着时间的推移而增加。我该怎么做呢?

  

var timer = NSTimer.scheduledTimerWithTimeInterval(0.4,target:self,selector:Selector(" grow"),userInfo:nil,repeats:true)

对于实际的功能,我很困惑如何写它。

1 个答案:

答案 0 :(得分:1)

如果您想要流畅的动画,请使用:

UIView.animateWithDuration(0.4, animations: { () -> Void in
    imageView.transform = CGAffineTransformMakeScale(2.0, 2.0)
})