Adding GIF Background to viewController with Swift
问题 I wanted to add GIF Background to my landing screen with swift, so I found this code online but when I try to use it on XCODE 7 with Swift 2.0 import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() var filePath = NSBundle.mainBundle().pathForResource("videoName", ofType: "gif") var gif = NSData(contentsOfFile: filePath!) var webViewBG = UIWebView(frame: self.view.frame) webViewBG.loadData(gif, MIMEType: "image/gif", textEncodingName: nil,