回答にはおそらく 2 秒ほどかかりますが、私の検索スキルでは、この問題についてあまり理解できませんでした。セグエを実行していますが、宛先で ID を取得する方法がわかりません。これがテーブルビューコントローラーの私のコードです。
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath: NSIndexPath *)indexPath{
NSLog(@"reaching accessoryButtonTappedForRowWithIndexPath:");
[self performSegueWithIdentifier:@"leads_calls_to_detail" sender:[[self.leads_calls objectAtIndex:indexPath.row] objectForKey:@"ID"]];
}
渡そうとする ID を取得できるようにするには、目的のビュー コントローラーで何を作成する必要がありますか?