I am trying to pass some data between my first and second ViewController. I already instantiated the second view controller like this:
ViewController
Registration
try this out
UIStoryboard board = UIStoryboard.FromName("Main", null); UIViewController ctrl = (UIViewController)board.InstantiateViewController("RegistrationViewController"); ctrl.ModalTransitionStyle = UIModalTransitionStyle.CrossDissolve; this.PresentViewController(ctrl, true, null);