访问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