1

我正在开发一个将 XML 文件解析为 UITableView 的 iPhone 应用程序。它列出了 XML 文件中项目的所有标题,我试图让单元格展开并在选择指定单元格时添加所选项目的正文内容。

我可以让单元格正确扩展,但是当我没有运气将正文内容添加为子视图时。在填充单元格时,cellForRowAtIndexPath我可以添加正文内容,并且显示正常。

我的问题是,如何在选定单元格中添加子视图?

我的cellForRowAtIndexPath功能,带有“功能”的 bodyLabel 注释掉了:

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

static NSString *cellID = @"Cell";
issue *curIssue = [[parser issues] objectAtIndex:indexPath.row];

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];


    CGRect nameFrame = CGRectMake(0,2,300,15);
    UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameFrame];
    nameLabel.tag = 1;
    nameLabel.font = [UIFont boldSystemFontOfSize:12];
    [cell.contentView addSubview:nameLabel];

    CGRect bodyFrame = CGRectMake(0,16,300,60);

    UILabel *bodyLabel = [[UILabel alloc] initWithFrame:bodyFrame];
    bodyLabel.tag = 2;
    bodyLabel.numberOfLines = 10;
    bodyLabel.font = [UIFont systemFontOfSize:10];
    bodyLabel.hidden = YES;

    [cell.contentView addSubview:bodyLabel];

}



    UILabel *nameLabel = (UILabel *)[cell.contentView viewWithTag:1];
    nameLabel.text     = [curIssue name];

    UILabel *bodyLabel = (UILabel *)[cell.contentView viewWithTag:2];
    bodyLabel.text     = [curIssue body];

    return cell;
}

这是我的heightForRowAtIndexPath功能,我正在尝试添加子视图。尝试执行时,我在尝试分配元素时收到 EXC_BAD_ACESS 异常*bodyLabel

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger defCellHeight  = 15;
NSInteger heightModifier = 10;
if([self cellIsSelected:indexPath]){
    return defCellHeight * heightModifier;
}

return defCellHeight;
}

我的didSelectRowAtIndexPath功能,它允许细胞生长/收缩:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{     
    BOOL isSeld = ![self cellIsSelected:indexPath];

    NSNumber *seldIndex = [NSNumber numberWithBool:isSeld];
    [selectedIndexes setObject:seldIndex forKey:indexPath];

    UILabel *label = (UILabel *)[tableView viewWithTag:2];
    label.hidden = NO;

    [curIssView beginUpdates];
    [curIssView endUpdates];
}

最后,cellIsSelected如果选择了单元格,则返回 true 的辅助函数:

-(bool) cellIsSelected:(NSIndexPath *)indexPath
{
    NSNumber *selIndex = [selectedIndexes objectForKey:indexPath];
    return selIndex == nil ? FALSE : [selIndex boolValue];
}

您可以在此处找到完整的源文件。

4

3 回答 3

1

似乎您正在多次分配和添加相同的 UILabel。您应该只需要在cellForRowAtIndexPath方法中执行一次。您可能还想bodyLabel在方法中将 设置为隐藏cellForRowAtIndexPath,然后在选择单元格时将其设置为不隐藏。有类似的东西:

bodyLabel.hidden = YES;

另一件事。为什么要取消选择 中的行didSelectRowAtIndexPath

于 2013-06-28T02:06:14.757 回答
0

为什么要在 heightForRowAtIndexPath 中创建 UILabel?如果您尝试将其添加到行中,请使用您在上面使用的 cellForRowAtIndexPath 方法。

只需将子视图添加到 UITableViewCell 或使用 UIView 的 addSubview 方法在 didSelectRowAtIndexPath 内的任何其他位置,即可在选择 UITableView 行时显示子视图。

于 2013-06-28T01:20:46.630 回答
0

要在选择单元格时向单元格添加子视图,非常简单:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{     
    /*
     .. your other setup
    */

    UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
    [cell.contentView addSubview:<your subview>];
}
于 2013-06-28T18:20:05.043 回答