Swift 2:对于字典,expression式的types是不明确的,没有更多的上下文

为什么编译器为下面的代码尝试创build一个字典时抛出一个错误? 你将如何解决这个代码?

let options = [ kCVPixelBufferCGImageCompatibilityKey: true, kCVPixelBufferCGBitmapContextCompatibilityKey: true] 

我已经查看了所有其他相关的问题,并没有find解决scheme。

怎么样

 let options : [NSObject : AnyObject] = [ kCVPixelBufferCGImageCompatibilityKey: true, kCVPixelBufferCGBitmapContextCompatibilityKey: true] 

Objective-C中的[NSObject : AnyObject]等价于NSDictionary 。 你使用的库要求它是这种types的。