type 'CFString!' does not conform to protocol 'NSCopying'
//编译ImageIO库发现提示这个问题,解决办法比较简单直接转换成NSString即可。
var gifProperties : NSDictionary = properties[kCGImagePropertyGIFDictionary] as NSDictionary
//改为:
var gifProperties : NSDictionary = properties[kCGImagePropertyGIFDictionary as String] as NSDictionary