我认为这一定是可能的,但我想知道是否有任何办法可以取回选定的单元格。我应该提一下,我们正在随机化cellForRowAtIndexPath
中的某些元素,所以我试图得到随机数据。因为我像这样返回索引路径:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
NSIndexPath *path = [self.tableView indexPathForSelectedRow];
NSLog(@"here is int: %i", path.row);
我如何回去获取特定的细胞?我在想cellForRowAtIndexPath
但是这会给我一个新的单元格 - 我想查询所选单元格的内容(比如标签中的内容或ImageView
中的哪个图像)。
答案 0 :(得分:0)
得到这样的话:
UITableViewCell* cell = (UITableViewCell*)sender;