在我的cellForRowAtIndexPath中,我正在子视图上进行一些自定义格式化,以便选择该单元格。完整的功能是:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UIView *left;
UIImageView *leftImage;
UILabel *label;
ArticleButton *btn;
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
if (!cell)
{
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"UITableViewCell"] autorelease];
left = [[[UIView alloc] initWithFrame:CGRectMake(0, 2, 155, 139)] autorelease];
leftImage = [[[UIImageView alloc] initWithFrame:CGRectMake(7,9,141,77)] autorelease];
label = [[[UILabel alloc] initWithFrame:CGRectMake(6,87,141,48)] autorelease];
btn = [[[ArticleButton alloc] initWithFrame:CGRectMake(0,2,155,139)] autorelease];
left.tag = 0;
leftImage.tag = 1;
label.tag = 2;
btn.tag = 3;
[btn addTarget:self action:@selector(selectArticle:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:left];
[cell.contentView addSubview:leftImage];
[cell.contentView addSubview:label];
[cell.contentView addSubview:btn];
}
else
{
left = (UIView*)[cell viewWithTag:0];
leftImage = (UIImageView*)[cell viewWithTag:1];
label = (UILabel*)[cell viewWithTag:2];
btn = (ArticleButton*)[cell viewWithTag:3];
}
...load *entry
NSURL *url = [NSURL URLWithString:[entry imageUrl]];
FeedEntry* selectedEntry = [detailViewController detailItem];
NSString* selectedTitle = selectedEntry.title;
if ([selectedTitle isEqualToString:entry.title])
{
[left setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellbackground_sel.png"]]]; <-- PROBLEM IS THIS IMAGE NEVER CHANGES
NSLog(@"selected row %@", selectedTitle);
}
else{
[left setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellbackground2.png"]]];
}
[left setNeedsDisplay];
[leftImage setImageWithURL:url placeholderImage:[UIImage imageNamed:@"placeholder.gif"]];
[leftImage setContentMode:UIViewContentModeScaleAspectFill];
leftImage.clipsToBounds = YES;
[label setBackgroundColor:[UIColor clearColor]];
label.textColor = [UIColor whiteColor];
label.text = [entry.title stringByAppendingString:@"\n\n"];
label.numberOfLines = 3;
label.lineBreakMode = UILineBreakModeClip;
label.font = [UIFont fontWithName:@"Arial-BoldMT" size:12];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
我遇到的问题是这一部分:
if ([selectedTitle isEqualToString:entry.title])
{
[left setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellbackground_sel.png"]]];
NSLog(@"selected row %@", selectedTitle);
}
else{
[left setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellbackground2.png"]]];
}
其他一切都有效,但是虽然我正在记录它被调用,但是我的子视图的背景表明所讨论的行是一个选定的行,所以永远不会改变。我试过调用setNeedsDisplay,我尝试上下滚动试图让单元格出列并重新创建,它只是从不使用其他图像,即使它记录正在绘制的行是选定的行。
(一旦我开始工作,我需要实现“正确”部分,在一行中有两个“单元格”,只选择一个。这就是为什么我这样做,单元格中的子视图)。
我做错了什么?
答案 0 :(得分:0)
每当选择特定的UITableViewCell
时,都会调用此特定委托 -
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
尝试查看此代表是否首先回复您的按钮点按,而不是转到您定义的selectArticle:
选择器...
答案 1 :(得分:0)
我认为将标记设置为零是个问题。文档说:
viewWithTag:
返回值
接收者层次结构中的视图,其tag属性与tag参数中的值匹配。讨论
此方法搜索指定视图的当前视图及其所有子视图。
如果认为大多数视图标记为零,即使是当前单元格视图的标记。我认为你没有从中获得正确的观点。尽量不要使用0
作为标记来使用。
答案 2 :(得分:0)
不要在tableview:cellForRowAtIndexPath:
中设置此内容,请尝试在tableview:willSelectRowAtIndexPath:
有关详细信息,请参阅protocol reference。