Gifu/Demo/demo/classes/ViewController.swift

31 lines
938 B
Swift
Raw Normal View History

2014-09-10 19:28:19 +00:00
import UIKit
2014-12-08 22:11:24 +00:00
import Gifu
2014-09-10 19:28:19 +00:00
class ViewController: UIViewController {
@IBOutlet weak var imageView: UIImageView!
@IBOutlet weak var button: FlatButton!
override func viewDidLoad() {
super.viewDidLoad()
if let image = AnimatedImage.animatedImageWithName("mugen.gif") {
imageView.setAnimatedImage(image)
imageView.startAnimatingGIF()
}
2014-09-10 19:28:19 +00:00
UIApplication.sharedApplication().setStatusBarStyle(.LightContent, animated: false)
}
@IBAction func toggleAnimation(button: UIButton) {
if imageView.isAnimatingGIF {
imageView.stopAnimatingGIF()
2014-09-10 19:28:19 +00:00
button.layer.backgroundColor = UIColor.whiteColor().CGColor
button.setTitleColor(UIColor.blackColor(), forState: .Normal)
} else {
imageView.startAnimatingGIF()
2014-09-10 19:28:19 +00:00
button.layer.backgroundColor = UIColor.clearColor().CGColor
button.setTitleColor(UIColor.whiteColor(), forState: .Normal)
}
}
}