0

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

    #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;
}
4

1 回答 1

2

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

于 2013-05-06T03:55:07.890 回答