如何让TabBarController使用Monotouch为ViewControllers设置动画

时间:2013-11-17 06:36:47

标签: animation xamarin.ios uitabbarcontroller

我有一个控制5个ViewControllers的TabBarController。当按下选项卡到当前的右侧时,我想从新的ViewController从右侧滑入。按当前选项卡的左侧将从左侧滑入VC。

实现这一目标的最佳方法是什么?

谢谢!

1 个答案:

答案 0 :(得分:0)

从iOS7开始,UITabBarController有2个属性可以设置来控制转换:

public Func<UITabBarController, UIViewController, UIViewController, IUIViewControllerAnimatedTransitioning> GetAnimationControllerForTransition;
public Func<UITabBarController, IUIViewControllerAnimatedTransitioning, IUIViewControllerInteractiveTransitioning> GetInteractionControllerForAnimationController;

这些文档包含herethere