如何计算在表视图中选择特定行的次数

发布于 2024-12-06 02:53:43 字数 225 浏览 0 评论 0原文

UITableViewDelegate 有一个方法来识别我在 tableView 中选择的行。

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

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

UITableViewDelegate has a method to identify which row i select in the tableView.

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

But how can i know which row i have selected how many times?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香橙ぽ 2024-12-13 02:53:43

在您的数据模型中,您可以使用 int 变量来了解数据被选择的次数。按照您在问题中提到的方法增加它。我希望你现在明白了。您不能使用单元格来维护计数,因为它们会被重复使用。

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

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

In your datamodel you can have a int variable to know how many times the data has been selected. Increment that in the method you have mentioned in your question. I hope you get the idea now. You cannot use the cell to maintain the count as they are reused.

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

Get the data and indexpath.row and increment the count.

兔姬 2024-12-13 02:53:43

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

Just create a integer int count in didSelectRowAtIndexPath: and increase the count by one whenever you select the row. Simple logic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文