从swift 1.2迁移到swift 2时,我有一个错误:
编译我的代码时,在模糊地使用下标
tutu.setTemplate(...
开头的行上的。似乎是出现此错误的感叹号:
func tapHandlerTemplatesControllerCell(recognizer:UITapGestureRecognizer)
{
self.templatesControllerCell.activate()
if let key1=toto as? NSString
{
if let key2=tata
{
tutu.setTemplate(tete.templates[String(key1)]![String(key2)] as! NSDictionary)
}
}
}