This is a port of the animated HTML5 canvas weather icons - Skycons from forecast.io - to Swift. Credit goes to zachwaugh as this project is translated from his works with minor bug fixes.
This is a one day transfer from zachwaugh's Objective C code to Swift, so it is not as Swifty as it should be.
Master is updated to Swift 4.2
See branches for previous swift versions.
Create a SKYIconView
, with a frame in mind. Set the type of weather and color, then use as you would use a UIView
. It will be animated by default and the animation can be turned off by setting a new one that you have created to pause.
let iconView = SKYIconView(frame: frame)
iconView.setType = .ClearDay
iconView.setColor = UIColor.cyanColor()
self.view.addSubview(iconView)
iconView.pause To pause the animation when needed
This is released into the public domain, same as the originals.