Ich bin mir nicht sicher, warum ich einen SIGABRT-Fehler erhalte, wenn ich gehe, um den pushViewController zu tun. Ich habe mpCustomFoodController als IBOUTLET und habe einen viewController innerhalb meiner nib-Datei und eine Datei, die darauf wartet, dies zu empfangen, aber dann schlägt es bei diesem Aufruf jedes Mal fehl.
-(IBAction)createNewCustomFood:(id)sender{
[self cancelButtonColorChange:sender];
self.title = @"Cancel";
mpCustomFoodController = [[MPCustomFood alloc]initWithNibName:@"MPCustomFood" bundle:nil];
//this is where the error occurs once is calls this
[self.navigationController pushViewController:mpCustomFoodController animated:YES];
//this will be calling the new view
}