我的图像需要随着时间的推移而增加。我该怎么做呢?
var timer = NSTimer.scheduledTimerWithTimeInterval(0.4,target:self,selector:Selector(" grow"),userInfo:nil,repeats:true)
对于实际的功能,我很困惑如何写它。
答案 0 :(得分:1)
如果您想要流畅的动画,请使用:
UIView.animateWithDuration(0.4, animations: { () -> Void in
imageView.transform = CGAffineTransformMakeScale(2.0, 2.0)
})