当我们选择 UITableViewCell 比- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
调用。
但是如果我们持有 UITebleViewCell 会调用哪个方法。伙计们,我的问题是我创建了一个包含大单元格的表格视图,并且在该单元格中我正在设置各种视图视图的背景颜色。
当我选择单元格时,我的单元格的背景颜色将消失。我已经通过didSelectRowAtIndexPath
像这样的方法再次设置视图背景颜色来解决这个问题。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
UIView *vLineview=[selectedCell viewWithTag:1];
vLineview.backgroundColor = [UIColor colorWithRed:(89/255.0) green:(89/255.0) blue:(89/255.0) alpha:1];
}
这完成了技巧,我的视图背景颜色将显示,但是当我持有 UITableViewCell 时,它会再次消失。
我该如何解决这个问题?我是否必须和手势识别器来检测长触摸并在其中实现我的视图背景方法?或者有任何其他可用的方法。