我刚刚注意到 iOS 上的 UITableViewCell 类和 userInteractionEnabled 属性有些奇怪。
看来,如果在将文本分配给单元格标签之前将 userInteractionEnabled 设置为 NO ,则文本将显示为灰色。但是,在设置文本后将userInteractionEnabled 设置为 NO会使文本颜色变为黑色(请参见下面的示例代码片段)。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
// swap these two lines around, and the text color does not change to grey!
cell.userInteractionEnabled = (indexPath.row % 2) == 0;
cell.textLabel.text = @"Hello";
return cell;
}
这真的很烦人,因为这意味着在重复使用单元格的情况下我最终会出现不同的行为。上面的示例演示了这一点 - 表格的第一页显示了带有灰色/黑色文本的交替行。进一步向下滚动,以便重复使用单元格,您可以看到出现问题。
我只是想知道我是否做错了什么,或者这是一个 iOS 错误?我在 iPad 3 上的 iOS 5.1 下看到了问题。任何见解都非常感谢!