TableView:如何从 didSelectRowAtIndexPath 例程中选择另一行的值

发布于 2024-12-11 12:06:17 字数 275 浏览 0 评论 0原文

当调用 didSelectRowAtIndexPath 时,可以使用以下方法轻松获取单元格的文本值: UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; EntryText = cell.textLabel.text;

但是,我在弄清楚如何同时从另一行获取单元格文本值时遇到问题。例如,如果用户单击第 0 行,上面的代码将为我获取第 0 行的单元格文本。但是我需要从第 1 行和第 2 行获取单元格文本。

我该怎么做?

When didSelectRowAtIndexPath is called, it's easy to get a cell's text value using:
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
entryText = cell.textLabel.text;

However, I'm having a problem figuring out how to get the cell text value from another row at the same time. For instance, if a user clicks on row 0, the above will get me the cell text from row 0. But I need to get the cell text from row 1 and row 2.

How do I do that?

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

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

发布评论

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

评论(3

黎夕旧梦 2024-12-18 12:06:17

只需向您的模型询问数据即可。您永远不应该使用视图来存储数据。这对于表视图单元格来说尤其重要,当用户将单元格滚动到屏幕上时,视图中的数据可能会从一个时刻消失到下一个时刻。

Simply ask your model for the data. You should never use views to store data. This is especially important for table view cells where the data in the view can be gone from one moment to the next as the user scrolls a cell off the screen.

锦欢 2024-12-18 12:06:17

例如,如果您为这些单元格创建自己的 IndexPath 变量:

NSIndexPath *indexPath1 = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
UITableViewCell *cell1 = [self.tableView cellForRowAtIndexPath:indexPath1];
NSString *cell1Text = [NSString stringWithString: cell1.textLabel.text];

NSIndexPath *indexPath2 = [NSIndexPath indexPathForRow:indexPath.row+2 inSection:indexPath.section];
UITableViewCell *cell2 = [self.tableView cellForRowAtIndexPath:indexPath2];
NSString *cell2Text = [NSString stringWithString: cell2.textLabel.text];

那就可以了。

If you create your own IndexPath variable for those cells, for example:

NSIndexPath *indexPath1 = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
UITableViewCell *cell1 = [self.tableView cellForRowAtIndexPath:indexPath1];
NSString *cell1Text = [NSString stringWithString: cell1.textLabel.text];

NSIndexPath *indexPath2 = [NSIndexPath indexPathForRow:indexPath.row+2 inSection:indexPath.section];
UITableViewCell *cell2 = [self.tableView cellForRowAtIndexPath:indexPath2];
NSString *cell2Text = [NSString stringWithString: cell2.textLabel.text];

That should do the trick.

世态炎凉 2024-12-18 12:06:17

这实际上取决于您如何存储表的数据源。如果它在数组中,那么您只需索引到数组即可获取值。

It really depends on how you are storing the datasource for the table. If it's in an array, then you simply index into the array to get the value.

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