Example #1
0
 public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender)
 {
     // This is called before ViewDidLoad, and this is a container view
     // within this view controller - so it does not have a ViewModel
     if (segue.Identifier == "PropertyListOptionsSegue")
     {
         _optionsVC = segue.DestinationViewController as PropertyListOptionsViewController;
         //Console.WriteLine (_optionsVC.Ci);
     }
 }
		public override void PrepareForSegue (UIStoryboardSegue segue, NSObject sender)
		{
			// This is called before ViewDidLoad, and this is a container view 
            // within this view controller - so it does not have a ViewModel 
			if(segue.Identifier == "PropertyListOptionsSegue")
			{
				_optionsVC = segue.DestinationViewController as PropertyListOptionsViewController;
				//Console.WriteLine (_optionsVC.Ci);

			}
		}