繁体   English   中英

为什么在显示此表视图时看到崩溃?

[英]Why am I seeing a crash when displaying this table view?

我正在为EmployeeContactDirectory设计一个基于导航的简单应用程序。 我正在显示员工列表。 为了显示员工列表,我使用了restfull Web服务。 我得到了适当的回应。 我有一个用于Employee Data的实用程序类,该类是EmployeeData.h和Employee.m(包含employeeId,employeeFirstName和employeeLastName)。 我的解析代码

// Code for parsing the response and getting desired field into the dictionary object and add the dictionaries into the array.     
    -(void)finishedReceivingData:(NSData *)data {   
        NSData *dataRes = [[restConnection stringData] dataUsingEncoding:NSUTF8StringEncoding];
        ////////////////Parsing with XPathQuery Start//////////////////////
        if (dataRes != NULL) {
        employeeData = [[EmployeeData alloc] init];
        NSString *xPathQuery = [NSString stringWithFormat:@"/*",employeeData.employeeID];
        NSArray *arrayWithObjectList = PerformXMLXPathQuery(dataRes, xPathQuery);
        for(NSDictionary *childOfObjectList in arrayWithObjectList){
        NSArray *arrayOfDataValueObj = (NSArray *)[childOfObjectList objectForKey:@"nodeChildArray"];
       for(NSDictionary *childObjListDict in arrayOfDataValueObj){
       NSArray *childObjListDataValue = (NSArray *)[childObjListDict objectForKey:@"nodeChildArray"];
       for(NSDictionary *childDict in childObjListDataValue){
    if([[childDict objectForKey:@"nodeName"] isEqualToString:@"FName" ])
       {
       employeeData.employeeFirstName = [childDict objectForKey:@"nodeContent"];
       }
       if([[childDict objectForKey:@"nodeName"] isEqualToString:@"EmpID"])
       {
       employeeData.employeeID = [childDict objectForKey:@"nodeContent"];
       }
       }
       //employeeFirstNameArray = [NSArray arrayWithObjects:employeeData, nil];
       employeeIDArray = [NSArray arrayWithObjects:employeeData, nil];
       dictionaryEmployeeFirstName = [NSDictionary dictionaryWithObject:employeeData.employeeFirstName forKey:@"employeeData"];
       dictionaryEmployeeID = [NSDictionary dictionaryWithObject:employeeData.employeeID forKey:@"employeeData"];
       tempArray = [NSArray arrayWithObjects:dictionaryEmployeeFirstName, dictionaryEmployeeID, nil];
       NSLog(@"size of temp %d",[tempArray count]);
       }
       }
      //[employeeData release];
      //employeeData = nil;
      }
      [self.tableviewEmloyeeList reloadData];
    //////////////////////////////Parsing with XPathQuery end//////////
    } 


    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        static NSString *CellIdentifier = @"Cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        } 
        // Configure the cell..
       NSDictionary *dictionaryEmployee = [tempArray objectAtIndex:indexPath.row];
       NSArray *firstNameArray = [dictionaryEmployee objectForKey:@"employeeData"];
       NSString *cellValue = [firstNameArray objectAtIndex:indexPath.row];
       NSLog(@"cellValue %@",cellValue);
       cell.textLabel.text = cellValue;

       return cell;
    }

这行代码进入执行流程时,我收到消息(Exc_bad_Access):

NSDictionary *dictionaryEmployee = [tempArray objectAtIndex:indexPath.row]

The EXC_Bad_Access is at the mail.m file at line nt retVal = UIApplicationMain(argc, argv, nil, nil);

因此,请告诉我使用NSDictionary时如何将数据设置到表视图中。 当用户单击表视图的行时,它将返回所选员工的ID。

代替线

tempArray = [NSArray arrayWithObjects:dictionaryEmployeeFirstName, dictionaryEmployeeID, nil];

试试以下,

if( tempArray )
{
   [tempArray release];
   tempArray = nil;
}

tempArray = [[NSArray arrayWithObjects:dictionaryEmployeeFirstName, dictionaryEmployeeID, nil] retain];

由于它是自动释放的,因此它可能内存不足。

您需要实现一个名为的tableView委托方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

在这里,您将在表中单击该节和行

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM