UITableViewDelegate
有一种方法可以识别我在tableView
中选择的行。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
但我怎么知道我选择了哪一行多少次?
答案 0 :(得分:0)
只需在int count
中创建一个整数didSelectRowAtIndexPath:
,并在选择行时将count
增加一。简单的逻辑。
答案 1 :(得分:0)
在datamodel
中,您可以使用int变量来了解数据的选择次数。增加你在问题中提到的方法。我希望你现在明白这个想法。您不能使用单元格来重复使用它们。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
获取数据和indexpath.row并增加计数。