0

ユーザーが任意のセルをクリックするたびにこのコードを使用すると、セグエが何度も実行されます。ロードされたビューを追跡して、無限の新しいビューコントローラーではなく、ビューを切り替えるときにデータを保持するにはどうすればよいか疑問に思っています。

ありがとう -

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
  if (indexPath.row == 0) {
    [self.navigationController
     performSegueWithIdentifier:@"rep" sender:self];
  } else if (indexPath.row == 1) {
    [self.navigationController
     performSegueWithIdentifier:@"rep1" sender:self];
  }

}
4

4 に答える 4