Everything was working fine, then I deleted a view controller, replaced it with a TableView, made sure everything was renamed, built it, and ran it, once I click the button to switch to the table view, I get this http://prntscr.com/3r9uc7
Here's my code
NSLog( @"Logged In!" );
availCourses *courses =
[self.storyboard instantiateViewControllerWithIdentifier:@"availCourses"];
[self.navigationController pushViewController:courses animated:YES];
What I think might be the issue is I'm using instantiateViewControllerWithIdentifier and pushViewController when it's a TableView controller. I just don't know how to switch!