如何计算在tableview中选择特定行的时间

时间:2011-09-22 11:43:25

标签: iphone row selection uitableview

UITableViewDelegate有一种方法可以识别我在tableView中选择的行。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

但我怎么知道我选择了哪一行多少次?

2 个答案:

答案 0 :(得分:0)

只需在int count中创建一个整数didSelectRowAtIndexPath:,并在选择行时将count增加一。简单的逻辑。

答案 1 :(得分:0)

datamodel中,您可以使用int变量来了解数据的选择次数。增加你在问题中提到的方法。我希望你现在明白这个想法。您不能使用单元格来重复使用它们。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

获取数据和indexpath.row并增加计数。