我已经Selection = None
从那个静态的故事板场景中选择了UITableViewCell
。我还添加了这个方法:
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
switch (indexPath.row) {
case 1:
return nil;
break;
}
}
这不是特别好,因为它警告方法不返回值。
该单元格仍然是可选择的,一次,短暂,然后不再。单元格设置如下:
case 1:
cell.textLabel.text = @"Search";
break;
之didSelectRowAtIndexPath
类的:
case 1:
NSLog(@"Unselectable Cell");
break;
我还缺少什么吗?