gpt4 book ai didi

iphone - 选择 UITableView 行时添加 subview ?

转载 作者:行者123 更新时间:2023-11-29 13:11:06 26 4
gpt4 key购买 nike

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

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

我的问题是,如何在选中的单元格中添加 subview ?

我的 cellForRowAtIndexPath 函数,注释掉了 'functioning' 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 函数,我试图在其中添加 subview 。尝试执行时,我在尝试分配 *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 .

最佳答案

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

bodyLabel.hidden = YES;

还有一点。为什么要取消选择 didSelectRowAtIndexPath 中的行?

关于iphone - 选择 UITableView 行时添加 subview ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17354531/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com