私はsqliteに接続する小さなアプリで作業しています。問題なくテーブルビューにデータを一覧表示しますが、セルをクリックして詳細を表示すると機能せず、エラーは見つかりません。
これは、識別子を使用して UIviewController を呼び出す方法のコードです。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
Report11ViewController *destino = [self.storyboard instantiateViewControllerWithIdentifier:@"visualizacion"];
Vehiculo *tmp = [vehiculos objectAtIndex:[indexPath row]];
destino.vehiculo = tmp;
[self.navigationController pushViewController:destino animated:YES];
}
私は属性インスペクタ識別子を入れました:visualizacion 助けていただければ幸いです。ありがとう