码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 应用全部添加滑动返回

时间:2018-01-15 20:27:26      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:cte   sar   rect   set   pos   button   customer   gpo   bar   

if ([self  class] == [HomeViewController class]||[self  class] == [ComprehensivefinanceViewController class]||[self  class] == [MyCenterViewController class]||[self  class] == [CustomerManageViewController class]) {

        //添加左扫和右扫手势

        UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(tappedRightButton:)];

        

        [swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];

        

        [self.view addGestureRecognizer:swipeLeft];

        

        UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(tappedLeftButton:)];

        

        [swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];

        

        [self.view addGestureRecognizer:swipeRight];

 

//在基类的控制器里面书写   给主控制器加轻扫手势监听

- (IBAction) tappedRightButton:(id)sender

 

{

    

    NSUInteger selectedIndex = [self.tabBarController selectedIndex];

    

    

    

    NSArray *aryViewController = self.tabBarController.viewControllers;

    

    if (selectedIndex < aryViewController.count - 1) {

        

        //        UIView *fromView = [self.tabBarController.selectedViewController view];

        //

        //        UIView *toView = [[self.tabBarController.viewControllers objectAtIndex:selectedIndex + 1] view];

        //

        //        [UIView transitionFromView:fromView toView:toView duration:0.5f options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {

        //

        //            if (finished) {

        

        [self.tabBarController setSelectedIndex:selectedIndex + 1];

        

        //            }

        //

        //        }];

        

    }

    

    

    

}

 

 

 

- (IBAction) tappedLeftButton:(id)sender

 

{

    

    NSUInteger selectedIndex = [self.tabBarController selectedIndex];

    

    

    

    if (selectedIndex > 0) {

        

        //        UIView *fromView = [self.tabBarController.selectedViewController view];

        //

        //        UIView *toView = [[self.tabBarController.viewControllers objectAtIndex:selectedIndex - 1] view];

        

        //        [UIView transitionFromView:fromView toView:toView duration:0.5f options:UIViewAnimationOptionTransitionFlipFromLeft completion:^(BOOL finished) {

        //

        //            if (finished) {

        

        [self.tabBarController setSelectedIndex:selectedIndex - 1];

        

        //            }

        //            

        //        }];

        

    }

    

    

}

 //这样就可以  全局滑动返回 

 

 

若是网页控制器实现滑动返回功能  就得在WKWebview实现

_wkWebView.allowsBackForwardNavigationGestures = YES;//打开webview页面的滑动返回

        

        

    }else{

        self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;

    }

 //就是这么简单

iOS 应用全部添加滑动返回

标签:cte   sar   rect   set   pos   button   customer   gpo   bar   

原文地址:https://www.cnblogs.com/tryFighting/p/8289336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!