Newbie question: What's the best way to transition from one View to another w/o using a navigation bar? This is for a login screen - something I want to show once but not have it on any navigation stack. Here's what I'm doing now:
TIA.
Code:
TheOtherController *theOtherController = [[TheOtherController alloc] initWithNibName:@"TheOtherView" bundle:nil];
[self.window removeFromSuperview];
[self.window addSubview:theOtherController.view];
TIA.