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.