View Single Post
  #3 (permalink)  
Old 07-05-2009, 11:21 AM
iSkythe's Avatar
iSkythe iSkythe is offline
iPhone Newbie
 
Join Date: May 2009
Posts: 35
iSkythe is on a distinguished road
Default

Never mind, I figured it out.

Thanks for the help though.

Quote:
-(IBAction)advanceid)sender
{

//Lazy load - we load Question1 the first time the button is pressed
if (self.question1ViewController == nil)
{
Question1ViewController *question1Controller = [[Question1ViewController alloc] initWithNibName:@"Question1View" bundle:nil];
self.question1ViewController = question1Controller;
advanceButton.hidden = YES;
wrongButton.hidden = YES;
wrongButton2.hidden = YES;
wrongButton3.hidden = YES;
[question1Controller release];
}


{
[titleViewController.view removeFromSuperview];
[self.view insertSubview:question1ViewController.view atIndex:1];
}
}
Reply With Quote