I am trying to navigate from old view to new view. But the view does not navigate.
Here is my code.
DetailsList *detailViewController = [[DetailsList alloc]initWithNibName:@"DetailsList" bundle:nil];
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
Thank you.
set the break point at
DetailsList *detailViewController = [[DetailsList alloc]initWithNibName:@"DetailsList" bundle:nil];line.When debug point comes at
[self.navigationController pushViewController:detailViewController animated:YES];line then, put ur mouse cursor on “detailViewController ” variable, and check does it shows any hex values. If it shows (x0x) it means memory is not allocated .