UiTableview与didselectrowAtindexpath一起回归以前的选择?

时间:2012-08-29 09:14:52

标签: ios5 uitableview segue didselectrowatindexpath

我希望有人可以帮助我。我在这里做错了。我试图找到详细视图。问题是我第一次选择它时,它返回一个nil值,第二个,第三个等时间它返回我之前选择的值。

我希望有人可以帮助我。

提前多多感谢。

问候,

jaco

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

      NSInteger section = [indexPath section];
      NSArray *HS = [sect objectForKey:[alles objectAtIndex:section]];
      passString = [HS objectAtIndex:indexPath.row];

   }


 -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{

     SiTDetailViewController *vcTarget = [segue destinationViewController];

    vcTarget.mijnString = passString;

  }

1 个答案:

答案 0 :(得分:0)

嘿嘿......弄清楚了。对我来说有点愚蠢'延迟'是因为我使用了seque和didSelectRowAtIndexPath。 这就是它的工作原理:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{

  NSIndexPath *path = [self.tableView indexPathForSelectedRow];
  NSArray *HS = [sect objectForKey:[alles objectAtIndex:path.section]];
  passString = [HS objectAtIndex:path.row];
  SiTDetailViewController *vcTarget = [segue destinationViewController];
  vcTarget.mijnString = passString;

}