无法下标[String:AnyObject]类型的值?索引类型为String

编程入门 行业动态 更新时间:2024-10-26 19:24:14
本文介绍了无法下标[String:AnyObject]类型的值?索引类型为String的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我知道有很多相同的问题,但是仍然找不到解决我的错误的方法.请查看图片以获取更多详细信息.我使用了Xcode 7和Swift 2.0

I know have many the same question but still cannot find the way to fix my error. Please see the image for more detail. I used Xcode 7 and swift 2.0

编辑:对Swift的警告进行了修正. finnaly (change?[NSKeyValueChangeNewKey]?.boolValue)!修复了错误

fcking the warning of Swift. finnaly (change?[NSKeyValueChangeNewKey]?.boolValue)! fixed the error

推荐答案

change是可选的.要么打开可选的

change is an optional. Either unwrap the optional

let isCaptureStillImage = change![NSKeyValueChangeNewKey]!.boolValue

或使用可选的绑定

if let changeNewKey = change?[NSKeyValueChangeNewKey] { let isCaptureStillImage = changeNewKey.boolValue ...

更多推荐

无法下标[String:AnyObject]类型的值?索引类型为String

本文发布于:2023-11-26 16:41:08,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1634411.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:类型   下标   索引   AnyObject   String

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!