セルが押されたときに新しいビューにプッシュするこのコードがあります。この新しいビューは、押されたセルの名前に基づいてタイトルを変更します。ただし、ビューはすべてのセルで同じです。あるセルの下で何かを変更すると、他のセルごとにビューが変更されます。ビューの負荷を作成せずに、各ビューがセルごとに異なるようにするにはどうすればよいですか。これは実用的ではありません。ありがとうございました。
プッシュコード:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
ACollection *newView = [[ACollection alloc] init];
newView.template = [[Global collections] objectAtIndex:indexPath.row];
newView.theTitle = [self.tableView cellForRowAtIndexPath:indexPath].textLabel.text;
[self.navigationController pushViewController:newView animated:YES];
}