I am using the following code in the main view:
NSLog(@"Tapped!");
SocialwebTwitter *myView = [[SocialwebTwitter alloc] initWithNibName
"SocialwebTwitter" bundle:[NSBundle mainBundle]];
NSLog(@"Waiting!!");
[self.navigationController pushViewController:myView animated:YES];
NSLog(@"Finshed!");
[myView release];
All the console messages get posted but my SocialwebTwitter view controller never gets triggered. and the view is never loaded.
NSLog(@"Tapped!");
SocialwebTwitter *myView = [[SocialwebTwitter alloc] initWithNibName
NSLog(@"Waiting!!");
[self.navigationController pushViewController:myView animated:YES];
NSLog(@"Finshed!");
[myView release];
All the console messages get posted but my SocialwebTwitter view controller never gets triggered. and the view is never loaded.