iphone sdk +如何在字典值数组中检索字典

时间:2013-04-16 11:38:15

标签: ios nsmutablearray nsmutabledictionary

我想检索KpiName键(Kpi数据是kpi里面的数组,Name是字典键)和我下面提到的数据结构

--Array of dictionaries inside array of dictinary
ex..listOfProjectsArray--(
        {
        alertSeverity = 1;
        customerName = TPMG;
        endDate = "05-05-2013";
        isProjectHide = 1;
        kpiData =         (
                        {
                KpiName = "Change Request ";
                kpiActual = 14;
                kpiPlanned = "";
                kpiUnit = "";
            },
                        {
                KpiName = "Aged Debit";
                kpiActual = 24000;
                kpiPlanned = "";
                kpiUnit = EUR;
            },
        );
        lastInvoiceDate = "05-04-2013";
        nextBillingDate = "05-04-2013";
        nextMilestoneDate = "10-04-2013";
        nextReviewDate = "08-04-2013";
        plannedCompletionDate = "04-05-2013";
        projectID = 3000;
        projectName = "Rain Harvesting";
        projectSortType = "";
        projectStatus = 1;
        startDate = "01-01-2013";
    },

我试过这个,但它返回null

   NSString *kpiName = [[[[listOfProjectsArray objectAtIndex:indexPath.row] valueForKey:@"kpiData"] objectAtIndex:0]valueForKey:@"kpiName"];
       NSLog(@"kpiname:%@", kpiName);

2 个答案:

答案 0 :(得分:0)

试试这个

    NSString *kpiName =[[[[listOfProjectsArray objectAtIndex:indexPath.row] objectForKey:@"kpiData"]objectAtIndex:0]objectForKey:@"KpiName"];

答案 1 :(得分:0)

我被提到错了字典键

NSString *kpiName = [[[[listOfProjectsArray objectAtIndex:indexPath.row] valueForKey:@"kpiData"] objectAtIndex:0]valueForKey:@"kpiName"];
       NSLog(@"kpiname:%@", kpiName);

正确的一个是KpiName密钥,而不是kpiName