2011-05-30 71 views
0

我是新來的目標C,我真的需要以下問題的幫助。我有一個包含陣列userAttributes從字典中的數組中檢索元素

int y=0; 
for (int z=0;z<noOfNeighbours;z++) { 
NSMutableArray *userAttributes = [userDetails objectForKey:[employeeID objectAtIndex:z]]; 
      [userAttributes addObject:[NSString stringWithFormat:[myArrayOne objectAtIndex:17+y]]]; 
      [userAttributes addObject:[NSString stringWithFormat:[myArrayOne objectAtIndex:18+y]]]; 
      [userAttributes addObject:[NSString stringWithFormat:[myArrayOne objectAtIndex:22+y]]]; 
      y=y+17; 
      //NSLog(@"%@",[userAttributes objectAtIndex:0]); 
    } 

其中myArrayOne是包含所有信息的字符串陣列的字典爲userDetails。我正在使用employeeID數組作爲關鍵。如何檢索存儲在數組中的特定鍵的信息? 在此先感謝。

回答

1

如果您想基於密鑰檢索信息,則首先將其存儲在字典中而不是數組中。

相關問題