tableView:cellForRowAtIndexPath:返回null

时间:2013-05-06 02:51:09

标签: ios objective-c uitableview

在我的项目中,我有一个带有自定义单元格的UITableView,SearchCell。然而,Cell返回为空值,并将使应用程序崩溃。如果我选择捕获空异常并分配/初始化一个新单元格,它将显示为空白。以下是代码:

    #pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    //return self.workingDatabase.count; This was causing an error for some reason, not too sure
    return 1; //using 1 just for debugging
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    static NSString *CellIdentifier = @"InfoCell";
    SearchCell *cell = (SearchCell *)[tableView dequeueReusableCellWithIdentifier: CellIdentifier];

    /*
    if(cell == nil)
    {
        cell = [[SearchCell alloc] init];
    }*/

    // Configure the cell...
    Record *record = [self.workingDatabase objectAtIndex:indexPath.row];

    //set the content
    cell.myName.text = record.ABName;
    cell.myTarget.text = record.ABTarget;
    cell.myVendor.text = record.ABVendor;
    cell.myCatNumber.text = record.ABCatNumber;
    cell.myClonality.text = record.ABClonality;
    cell.myOrganism.text = record.ABSourceOrg;

    return cell;
}

1 个答案:

答案 0 :(得分:2)

问题是你的表格视图是使用静态单元格而不是动态单元格(顺便说一句,这是一个非常重要的区别,并且应该在你发布的任何问题中明确)。使用静态单元格时,您不需要(通常不应该)实现UITableView数据源方法。您可以在标签和表视图控制器本身之间建立出口连接,而不是单元格。事实上,您根本不需要自定义单元类(只需要这样就可以连接动态单元的出口)。然后,您可以像填充视图中的任何其他标签一样填充标签。