swift 字典填充问题:类型 'AnyObject' 不符合协议 'NSCopying'
swift dictionary population issue: type 'AnyObject' does not conform to protocol 'NSCopying'
我正在尝试将下一个代码从 Objetive-C 迁移到 Swift:
NSArray *voices = [AVSpeechSynthesisVoice speechVoices];
NSArray *languages = [voices valueForKey:@"language"];
NSLocale *currentLocale = [NSLocale autoupdatingCurrentLocale];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
for (NSString *code in languages)
{
dictionary[code] = [currentLocale displayNameForKey:NSLocaleIdentifier value:code];
}
然后我做了以下事情:
var voices:NSArray = AVSpeechSynthesisVoice.speechVoices()
var languages:NSArray=voices.valueForKey("language") as NSArray
var currentLocale:NSLocale=NSLocale.autoupdatingCurrentLocale()
var dictionary:NSMutableDictionary=NSMutableDictionary()
for code in languages {
var name=currentLocale.displayNameForKey(NSLocaleIdentifier, value: code)
dictionary[code]=name
}
我收到以下错误:
错误:类型'AnyObject'不符合协议'NSCopying'
字典[代码]=名字
我不知道如何声明字典对象,做一些像国家代码字符串作为键和一个小描述的数组这样简单的事情。
喜欢
词典[“es-ES”]=[“西班牙语”]
dictionary[“en-US”]=[“美式英语”]
NSDictionary
键需要符合NSCopying
,但AnyObject
不一定。 (NSArray
returns AnyObject
s in Swift。)在 code
变量上使用 as!
运算符以确保它是:
dictionary[code as! NSCopying] = name
您还可以将 language
数组向下转换为 [String]
并避免在赋值代码中进行转换。
我正在尝试将下一个代码从 Objetive-C 迁移到 Swift:
NSArray *voices = [AVSpeechSynthesisVoice speechVoices];
NSArray *languages = [voices valueForKey:@"language"];
NSLocale *currentLocale = [NSLocale autoupdatingCurrentLocale];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
for (NSString *code in languages)
{
dictionary[code] = [currentLocale displayNameForKey:NSLocaleIdentifier value:code];
}
然后我做了以下事情:
var voices:NSArray = AVSpeechSynthesisVoice.speechVoices()
var languages:NSArray=voices.valueForKey("language") as NSArray
var currentLocale:NSLocale=NSLocale.autoupdatingCurrentLocale()
var dictionary:NSMutableDictionary=NSMutableDictionary()
for code in languages {
var name=currentLocale.displayNameForKey(NSLocaleIdentifier, value: code)
dictionary[code]=name
}
我收到以下错误:
错误:类型'AnyObject'不符合协议'NSCopying' 字典[代码]=名字
我不知道如何声明字典对象,做一些像国家代码字符串作为键和一个小描述的数组这样简单的事情。 喜欢
词典[“es-ES”]=[“西班牙语”] dictionary[“en-US”]=[“美式英语”]
NSDictionary
键需要符合NSCopying
,但AnyObject
不一定。 (NSArray
returns AnyObject
s in Swift。)在 code
变量上使用 as!
运算符以确保它是:
dictionary[code as! NSCopying] = name
您还可以将 language
数组向下转换为 [String]
并避免在赋值代码中进行转换。