Switching View to Toolbar View
Hi,
How do I switch to a toolbar view? I used this code:
- (IBAction) switchToToolbar{
FirstViewController *view1 = [[FirstViewContoller alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:view1 animated:YES];
}
Yes, I did import "FirstViewController.h". Whenever I would try this, it would switch to a white screen, which my main window (toolbar window) definitely isn't.
Thanks
|