im trying to create a simple app that allows you to switch views. I can go to the next view but when i click the back button i get a EXC_BAD_ACCESS error on this line in the main.m:

return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

This is the code im using to go back:

-(IBAction)back:(id)sender{
[self.view removeFromSuperview];

}

i cant figure out what the problem would be so any help is appreciated! thank you.

link|improve this question

0% accept rate
How are you getting to the second view? – cwieland Oct 19 '11 at 20:27
Do you have the full callstack from the crash? Theres probably more useful information in there – Dan F Oct 19 '11 at 20:30
'-(IBAction)switchView:(id)sender { SecondView *MyViewController = [[SecondView alloc] initWithNibName:@"SecondView" bundle:nil]; [self.view addSubview:MyViewController.view]; }' – user975767 Oct 19 '11 at 21:21
thats how i get to the second page Dan F – user975767 Oct 19 '11 at 21:21
when the program crashes it doesnt show anything in the debugging area cwieland – user975767 Oct 19 '11 at 21:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.