I have an image that needs to increase in size over time. How would I go about doing that?
var timer = NSTimer.scheduledTimerWithTimeInterval(0.4, target: self, selector: Selector("grow"), userInfo: nil, repeats: true)
For the actual function I am confused how to write it.