标签: objective-c cocoa-touch for-loop
这个问题解释了这一切。
例如,如果我有这样的NSDictionary first =(“a”,“b”,“c”), second =(“d”,“e”,“f”) 第三=(“g”,“h”,“i”)
我想循环使用它们来进行一些操作。有可能吗?
由于
答案 0 :(得分:2)
终于找到了它。
for (id theKey in theDictionary) { id theObject = [[theDictionary objectForKey:theKey] retain]; }