UITable View Issue,
        Posted  
        
            by abc
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by abc
        
        
        
        Published on 2010-03-26T08:46:31Z
        Indexed on 
            2010/03/26
            8:53 UTC
        
        
        Read the original article
        Hit count: 148
        
iphone
|uitableview
hello i am having same issue, i tried your solution but it didnt help me in my case.. i am not getting exception but view is not getting changed..
my piece of code is as below
printf("hi"); //Get the selected country NSString *selectedCountry = [listOfItems objectAtIndex:indexPath.row];
//Initialize the detail view controller and display it. DetailViewController *aSecondView = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:nil]; // aSecondView.selectedCountry = selectedCountry; [self.navigationController pushViewController:aSecondView]; [aSecondView release]; aSecondView = nil; printf("bye..");
both hi and bye gets printed but view doesnt change.. i have wasted 2 days around it .. plz help me out..
© Stack Overflow or respective owner