TableView:如何从 didSelectRowAtIndexPath 例程中选择另一行的值
当调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需向您的模型询问数据即可。您永远不应该使用视图来存储数据。这对于表视图单元格来说尤其重要,当用户将单元格滚动到屏幕上时,视图中的数据可能会从一个时刻消失到下一个时刻。
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.
例如,如果您为这些单元格创建自己的 IndexPath 变量:
那就可以了。
If you create your own IndexPath variable for those cells, for example:
That should do the trick.
这实际上取决于您如何存储表的数据源。如果它在数组中,那么您只需索引到数组即可获取值。
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.