0
我正在使用this guy的Gif
類創建一個Gif UIImage
。 https://github.com/mayoff/uiimage-from-animated-gifUIImage Gif加載委託?
與此加載:
let fileUrl = NSURL(string: "some url" as! String)
let Gif = UIImage.animatedImageWithAnimatedGIFURL(fileUrl!)
imageview.image=Gif
的事情是,它需要時間,大量的時間,象7那樣秒鐘,直至你看到的圖像。
我想以某種方式預加載它,或者至少在完成加載時獲得委託。
我在這裏有什麼選擇?