我正在尝试将字符串转换为AnyHashable
,但是崩溃了。
我正在使用以下
let castArray = [string1,string2] as! AnyHashable
Myclass?.functionName!(forAction: actionMethod, forData: [
castArray:string3,
])
它抛出错误为:
Could not cast value of type 'Swift.Array<Swift.String>' to 'Swift.AnyHashable' and crashing.
String1
和String2
和String3
是static
字符串。
知道为什么会崩溃吗?