私のアプリケーションでは、すべてのものを動的に構築し、 Storyboard を使用しません。セル This is My Code を押したときにView Controllerを押すことができません。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
TripDetailView * TripDetailViewObjec = [[TripDetailView alloc]init];
[self.navigationController pushViewController:TripDetailViewObjec animated:YES];
}
この問題で何ができますか?前もって感謝します