如何获取 Objective-C 字典中每个键的值?

发布于 2024-08-22 12:21:28 字数 310 浏览 4 评论 0原文

我正在维护一个包含键和值对的 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.
}

如何进行?请帮忙

I'm maintaining a NSMutableDictionary which holds key and value pair.Now i need to perform some operation for each value in it.How to retrive value from dictionary.

// this is NSMutableDIctionary 
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];
 // in methodA

-(void)methodA
{
   //get the value for each key and peform an operation on it.
}

How to proceed? plz help

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

时光沙漏 2024-08-29 12:21:28
for (id key in dictobj)
{
    id value = [dictobj objectForKey:key];
    [value doSomething];
}
for (id key in dictobj)
{
    id value = [dictobj objectForKey:key];
    [value doSomething];
}
如日中天 2024-08-29 12:21:28

我不完全清楚你的问题在问什么,但你可能正在寻找:

for (id currentValue in [dictobj allValues])
{
    //stuff with currentValue
}

I'm not entirely clear what your question is asking, but you might be looking for:

for (id currentValue in [dictobj allValues])
{
    //stuff with currentValue
}
囚我心虐我身 2024-08-29 12:21:28
NSArray *array = [viewControllers allValues];
for (int i = 0; i<array.count; i++) {        
    MenuListingVC *vc = array[i];
    [vc tableDataReload];
}
NSArray *array = [viewControllers allValues];
for (int i = 0; i<array.count; i++) {        
    MenuListingVC *vc = array[i];
    [vc tableDataReload];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文