I have found this question asked using Objective-c but I am unable to translate it into C#
e.g. open-specific-view-when-opening-app-from-notification
Basically I want to do this:
public override void ReceivedRemoteNotification (UIApplication application, NSDictionary userInfo)
{
string alert = (aps[new NSString("alert")] as NSString).ToString();
Debug.WriteLine ("I want to open a specific ViewController and pass in my alert");
}
I am actually using mvvmcross to manage my View navigation. So ideally I want to somehow implement this navigation using mvvmcross. In mvvmcross I would navigate to my ViewControler by doing this:
this.ShowViewModel<SpecificControllerViewModel>();
Thanks