I need to open a registration form on my application programatically, the view controller is created on storyborad with storybpard ID ViewControllerRegister and the code I have used to open the form is
RegistrationFormViewController *registerView = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewControllerRegister"];
[self presentViewController:registerView animated:NO completion:nil];
But when I run the application, I am getting the error like,
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[__NSArrayM insertObject:atIndex:]: object cannot be nil' * First throw call stack:

