UITableView のセクション タイトルを別のビュー コントローラーのセクション タイトルにプッシュしたいと考えています。しかし、既存のセクション タイトルを読み取る方法がわかりません。既存のセクション タイトルは動的に構築されており、再構築するよりも再利用したいと考えています。
if (indexPath.section == 0) {
SecondViewController *secondViewController = [[SecondViewController alloc] init];
secondViewController.strValueHolder = FOO_section.sectionTitle; // FOO Code
[[self navigationController] pushViewController:secondViewController animated:YES];
[secondViewController release];
}