Alright, so what is happening is I have a button setup to link to another view in Xcode, so when the button is pressed, you will be directed to that view. Simple enough? So I thought. I've done this same implementation several times over, but for some reason when I link to the view I'm going to, it just brings me to a blank white screen. Here's the code:
- (IBAction)mainmenu:(id)sender
{
UIScrollView_PagingViewController *MainMenu = [[UIScrollView_PagingViewController alloc] initWithNibName:nil bundle:nil];
MainMenu.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:MainMenu animated:YES];
[UIScrollView_PagingViewController release];
}
Here's my entire project if you'd like to take a look at my XIB files, or my total code (1.4MB): http://www.mediafire.com/?cayw6o35ftcxsah