当我的单元格突出显示时,我遇到了一个奇怪的问题。
为了更好地向您介绍问题所在,请看看这两张图片:
这是单元格未被选中时的样子(正常状态):http://cl.ly/0n193u3U1o403x1s0m3z
这是突出显示(在点按期间)单元格的外观:http://cl.ly/1o2U400D3L0b3n3m1N1J
如您所见,选择单元格时,第二个标签的背景似乎会被忽略。 我不希望这种情况发生。我只想让第二个标签留在那里并保持不变。
这是我创建单元格的方法(使用不同的单元格标识符,每种单元格有几种类型)。
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellTableIdentifier] autorelease];
cell.backgroundView = [[[UIView alloc] init] autorelease];
}
switch (indexPath.section) {
...
...
case kTableSectionPending:
UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(10, 10, self.tableView.frame.size.width - 20, 30.0)] autorelease];
UILabel *label2 = [[[UILabel alloc] initWithFrame:CGRectMake(10, 50, self.tableView.frame.size.width - 20, 30.0)] autorelease];
label.text = NSLocalizedString(@"IncompletePath", @"");
label.font = [UIFont boldSystemFontOfSize:16];
label.textAlignment = UITextAlignmentCenter;
label.backgroundColor = [UIColor clearColor];
label.layer.cornerRadius = 10;
FFRoute *lastPoint = ((FFRoute *) [[[FFSQLite sharedSingleton] getRoutesFromItinerary:itinerary] lastObject]);
label2.text = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"LastPoint", @""), [self getStringFromTimestampOfFFRoute:lastPoint]];
label2.font = [UIFont systemFontOfSize:15];
label2.textAlignment = UITextAlignmentCenter;
label2.textColor = [UIColor whiteColor];
label2.backgroundColor = [UIColor colorWithRed:68/255.f green:82/255.f blue:124/255.f alpha:1];
label2.layer.cornerRadius = 10;
[label2 setOpaque:YES];
[cell.contentView addSubview:label];
[cell.contentView addSubview:label2];
// Set up background color
UIColor *bgcolor = [UIColor colorWithRed:250/255.f green:212/255.f blue:137/255.f alpha:1];
cell.backgroundView.backgroundColor = bgcolor;
break;
}
我试图将Opaque属性设置为true而没有运气。
我错过了什么?谢谢
答案 0 :(得分:0)
创建单元格时,请执行以下操作:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
可以突出显示,选择一个或两个单元格。您可能希望自定义绘图以使其绘制为选定状态(但仅在突出显示状态下绘制)。
答案 1 :(得分:0)
在iOS 6中,您可以在UITableViewDelegate
中使用2种方法来自定义单元格的突出显示及其子视图:
- (void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[cell setBackgroundColor:[UIColor lightGrayColor]]; // Your highlight color
// Make changes to subviews in cell
}
- (void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[UIView animateWithDuration:0.5f animations:^{
[cell setBackgroundColor:[UIColor whiteColor]]; // Your unhighlight
// Revert back changes for subviews
}];
}