选择UITableView行时添加子视图?

时间:2013-06-27 22:50:49

标签: iphone ios objective-c uitableview subview

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

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

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

我的cellForRowAtIndexPath函数,其中'functional'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函数,我正在尝试添加子视图。尝试执行时,尝试分配*bodyLabel元素时收到EXC_BAD_ACESS异常。

- (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];
}

您可以找到完整的源文件here

3 个答案:

答案 0 :(得分:1)

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

bodyLabel.hidden = YES;

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

答案 1 :(得分:0)

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

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

答案 2 :(得分:0)

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

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

    UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
    [cell.contentView addSubview:<your subview>];
}