Hey,
sorry for the question but i dont found any working solution.
I simple want to display a "CreditsView". So if i press a button show a credits view, press ok view disappear.
I have my base controller and my credits view controller and now i try something like:
- (IBAction)switchToCreditsView:(id)sender {
creditsViewController = [[CreditsViewController alloc] initWithNibName:@"CreditsViewController"];
[self.view addSubview:creditsViewController.view];
//[self presentModalViewController:creditsViewController animated:YES];
}
But if i press the Button my app crashed.
Thanks for your help!