You can use the animation method UIView. This is much simpler than other animations, but more limited. Fortunately, it backgroundColoris one of the animated ones. Example:
self.view.backgroundColor = UIColor.blueColor()
UIView.animateWithDuration(1.0, animations: {
self.view.backgroundColor = UIColor.clearColor()
})
source
share