我正在编写一个用swift2编写的教程 - 现在我安装了swift2.1。在Swift 2.1中,以下转换会抛出错误
dictionaryOK = (dictionary as! NSDictionary as? Dictionary)!
错误是
Cannot assign value of type 'Dictionary<Key,Value>' to type 'NSDictionary'
有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
解决方案如下:
dictionaryOK = (dictionary as! NSDictionary as? Dictionary<String, AnyObject>)!