Swift:editActionsForRowAtIndexPath无法访问indexPathForSelectedRow?

时间:2016-11-07 20:09:33

标签: ios swift uitableview indexpath

访问List<String> l1= new ArrayList<>(); l1.add("Apple"); l1.add("Orange"); l1.add("Apple"); l1.add("Milk"); HashSet<String> set = new HashSet<>(l1); for (String item : set) { if (l1.stream().filter(x -> !x.equals(item)).count() == l1.size() - 1) { System.out.println(item); } } 时,我想在之前选择的tableView(tableView,editActionsForRowAtIndexPath)上调用一个函数,但UITableViewCell正在返回tableView.indexPathForSelectedRow

这是我正在使用的代码。 if语句中的块未运行,nil返回tableView.indexPathForSelectedRow值。

nil

0 个答案:

没有答案