我显示在一个组表视图内容解析从XML。我想禁用它上的单击事件(我应该不能单击它)表包含两个组。我只想禁用第一组的选择,而不是第二组。点击第二组的第一行导航到我的管播放器视图。
如何使特定的组或行可选?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section!=0)
if(indexPath.row==0)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:tubeUrl]];
}
谢谢。
我同意布莱恩的回答。
如果我用cell。isUserInteractionEnabled = false,那么单元格中的子视图将不会被用户交互。
另一方面,设置单元格。selectionStyle = .none将触发didSelect方法,尽管没有更新选择颜色。
使用willSelectRowAt是我解决问题的方法。例子:
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
switch (indexPath.section, indexPath.row) {
case (0, 0), (1, 0): return nil
default: return indexPath
}
}
我同意布莱恩的回答。
如果我用cell。isUserInteractionEnabled = false,那么单元格中的子视图将不会被用户交互。
另一方面,设置单元格。selectionStyle = .none将触发didSelect方法,尽管没有更新选择颜色。
使用willSelectRowAt是我解决问题的方法。例子:
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
switch (indexPath.section, indexPath.row) {
case (0, 0), (1, 0): return nil
default: return indexPath
}
}