如何在nsmutablearray中使用数据?

时间:2014-08-04 04:31:08

标签: ios objective-c json ios7 nsmutablearray

  ( 
   (
           {

        "id" = 4;
       "title" = abc
   },
           {

        "id" = 5;
       "title" = xyz;
   },
           {
       "id" = 7;
           "title" = "pqr";

        }
   )
    )

NSMutableArray中的这些数据,我通过ID或标题获取此数据的时间我只得到标题abc如何获取NSMutableArray

中的所有数据

我的代码是: -

 for(int counter =0 ; counter < [tempData count];counter++)
  {
      NSMutableArray *tempData1 = [tempData objectAtIndex:counter];

      NSString *str_title = [tempData1 objectAtIndex:counter][@"title"];

    [nsm_temp addObject:str_title];
}

nsm_tempNSMutableArray

1 个答案:

答案 0 :(得分:1)

假设tempData是您可以执行的外部数组:

NSArray *tempData = ... // the outer array
NSArray *innerArray = tempData[0];
for (NSDictionary *dict in innerArray) {
    NSString *title = dict[@"title"];
    [nsm_temp addObject:title];
}