有什么方法可以将[NSSTRING:任何]类型的字典映射到另一个[字符串:任何]

发布于 2025-01-24 03:15:35 字数 631 浏览 0 评论 0原文

我试图将类型的字典[uiimagePickerController.Infokey:任何] to [string:and nyy] type,但似乎是不可能的。结果是零。我发现直接遍历原始dict的迭代,抓住价值并用RawValue插入它。但是,也许我做错了

debugger,表明 [uiimagepickercontroller.infokey:hood下的任何] [nsstring:nocy]

let imagePropsDict: [UIImagePickerController.InfoKey: Any] = getStubbedProps()
var propsDict: [String: Any] = [:]
imagePropsDict.forEach { infoKey, value in
    propsDict[infoKey.rawValue] = value
}

和无效的代码:

if let mappedDict = imagePropsDict as? [String: Any] { ... }

I tried to cast dictionary of type [UIImagePickerController.InfoKey: Any] to [String: Any] type, but it seems it's not possible. The result was nil. I've found straightway to iterate throught original dict, grab value and insert it with rawValue. But maybe I'm doing it wrong

debugger showed that [UIImagePickerController.InfoKey: Any] under the hood is [NSString: Any]

let imagePropsDict: [UIImagePickerController.InfoKey: Any] = getStubbedProps()
var propsDict: [String: Any] = [:]
imagePropsDict.forEach { infoKey, value in
    propsDict[infoKey.rawValue] = value
}

and the invalid code:

if let mappedDict = imagePropsDict as? [String: Any] { ... }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文