-1

我认为这一定是可能的,但我想知道是否有任何方法可以取回选定的单元格。我应该提到我们正在随机化其中的某些元素,cellForRowAtIndexPath所以我试图得到随机数据是什么。因为我得到这样的索引路径:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    NSIndexPath *path = [self.tableView indexPathForSelectedRow];
    NSLog(@"here is int: %i", path.row);

我将如何返回并获取特定的单元格?我在想cellForRowAtIndexPath,但这会给我一个新的单元格 - 我想查询所选单元格的内容(例如标签中的内容或图像中的内容ImageView)。

4

1 回答 1

0

像这样得到它:

UITableViewCell* cell = (UITableViewCell*)sender;
于 2013-08-04T22:41:07.183 回答