在Swift 3中,NSMutable字典是可变的字典类型,可以通过以下步骤从NSMutable字典中获取特定索引中的元素:
var mutableDictionary: NSMutableDictionary = NSMutableDictionary()
mutableDictionary.setValue("Value 1", forKey: "Key 1")
mutableDictionary.setValue("Value 2", forKey: "Key 2")
mutableDictionary.setValue("Value 3", forKey: "Key 3")
if let value = mutableDictionary.object(forKey: "Key 2") {
print(value)
} else {
print("Key not found")
}
上述代码会打印出键"Key 2"对应的值"Value 2"。如果键不存在,将打印"Key not found"。
需要注意的是,NSMutable字典是Foundation框架中的类,所以你需要在使用之前导入Foundation模块:
import Foundation
推荐的腾讯云相关产品:腾讯云数据库TencentDB,产品介绍链接地址:https://cloud.tencent.com/product/cdb
领取专属 10元无门槛券
手把手带您无忧上云