What I am trying to do is click a button (that was created in code) and have it call up a different view controller then have it run a function in the new view controller.>
If someone need the same in Xamarin (Xamarin.ios / Monotouch), this worked for me:
var myDelegate = UIApplication.SharedApplication.Delegate as AppDelegate;
(Require using UIKit;)