作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在维护一个包含键值对的 NSMutableDictionary
。现在我需要对其中的每个值执行一些操作。如何从字典中检索值。
// this is NSMutableDIctionary
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];
// in methodA
-(void)methodA
{
//get the value for each key and peform an operation on it.
}
如何进行?请帮忙
最佳答案
for (id key in dictobj)
{
id value = [dictobj objectForKey:key];
[value doSomething];
}
关于objective-c - 如何在 Objective-C 中获取字典中每个键的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2286186/
我是一名优秀的程序员,十分优秀!