I created a button which is supposed to launch a view.. heres what I have so far:
All of the logs get printed out on the console however the view never opens or gives any indication that anything occurred. I know the button is working but it seems that its either in the code or in some aspect of the interface builder.
Code:
SocialwebTwitter *myView = [[SocialwebTwitter alloc] initWithNibName:@"SocialwebTwitter" bundle:[NSBundle mainBundle]];
NSLog(@"Waiting!!");
[self.navigationController pushViewController:myView animated:YES];
NSLog(@"Finshed!");
[myView release];
All of the logs get printed out on the console however the view never opens or gives any indication that anything occurred. I know the button is working but it seems that its either in the code or in some aspect of the interface builder.