你的位置:首页 > 软件开发 > 操作系统 > App开发流程之右滑返回手势功能续

App开发流程之右滑返回手势功能续

发布时间:2016-09-22 18:00:09
上一篇记录了利用系统私有变量和方法实现右滑返回手势功能:http://www.cnblogs.com/ALongWay/p/5893515.html这篇继续记录另一种方案:利用UINavigationController的delegate方法。核心代理方法有如下两个:- (nul ...

上一篇记录了利用系统私有变量和方法实现右滑返回手势功能:http://www.cnblogs.com/ALongWay/p/5893515.html

这篇继续记录另一种方案:利用UINavigationController的delegate方法。

核心代理方法有如下两个:

- (nullable id <UIViewControllerInteractiveTransitioning>)navigationController:(UINavigationController *)navigationController             interactionControllerForAnimationController:(id <UIViewControllerAnimatedTransitioning>) animationController NS_AVAILABLE_IOS(7_0);- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController                  animationControllerForOperation:(UINavigationControllerOperation)operation                        fromViewController:(UIViewController *)fromVC                         toViewController:(UIViewController *)toVC NS_AVAILABLE_IOS(7_0);

原标题:App开发流程之右滑返回手势功能续

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录