ios dev help -noob

Associate
Joined
26 Nov 2006
Posts
1,091
if you know how to xcode can you please look at this code and explain why its not working? I've opened a webpage from selecting an item from the table but the detailview just doesnt load.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { DetailViewController *dvController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:[NSBundle mainBundle]]; [self.navigationController pushViewController:dvController animated:YES]; [dvController release]; dvController = nil; tableView.delegate=self; }

thanks
 
Back
Top Bottom