When working with storoboard through code we can instantiate controllers via identifier, but if the controller with this identifier is not found will be crash. How I can avoid crashes and/or check existence of the controller in advance?
Controller instantiate example:
UIViewController *controller = [[UIStoryboard storyboardWithName:@"Settings" bundle:nil] instantiateViewControllerWithIdentifier:model.identifier];
[self.navigationController pushViewController:controller animated:YES];