0

我希望有人可以帮我解决这个问题。我在这里做错了什么。我试图继续查看详细信息。问题是我第一次选择它时,它返回一个 nil 值,第二次、第三次等它返回我之前选择的值。

我希望有人可以帮助我。

提前非常感谢。

问候,

哈科

 - (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;

  }
4

1 回答 1

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;

}
于 2012-08-31T18:37:32.603 回答