I'm trying to implement my custom transition beetween views with IUIViewControllerTransitioningDelegate. This is my TableViewController
public class TableListView : MvxTableViewController, IUIViewControllerTransitioningDelegate
{
...
[Export ("animationControllerForPresentedController:presentingController:sourceController:")]
public MonoTouch.UIKit.IUIViewControllerAnimatedTransitioning PresentingController (MonoTouch.UIKit.UIViewController presented, MonoTouch.UIKit.UIViewController presenting, MonoTouch.UIKit.UIViewController source)
{
...
}
[Export ("animationControllerForDismissedController:")]
public MonoTouch.UIKit.IUIViewControllerAnimatedTransitioning GetAnimationControllerForDismissedController (MonoTouch.UIKit.UIViewController dismissed)
{
...
}
}
but when from core i show another ViewModel, GetAnimationControllerForDismissedController or PresentingController (when itself is showed) are not invoked...
Here an example with monotouch https://github.com/xamarin/monotouch-samples/tree/master/TransitionsDemo