我希望有人可以帮我解决这个问题。我在这里做错了什么。我试图继续查看详细信息。问题是我第一次选择它时,它返回一个 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;
}