zoukankan      html  css  js  c++  java
  • 在baseViewController 里边 隐藏键盘的操作

    - (void)j_tapDismissKeyboard

    {

        NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];

        

        UITapGestureRecognizer *singleTapGR = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(j_tapAnywhereToDismissKeyboard:)];

        

        __weak UIViewController *weakSelf = self;

        

        NSOperationQueue *mainQuene =[NSOperationQueue mainQueue];

        

        [nc addObserverForName:UIKeyboardWillShowNotification object:nil queue:mainQuene usingBlock:^(NSNotification *note) {

            

            [weakSelf.view addGestureRecognizer:singleTapGR];

        }];

        

        [nc addObserverForName:UIKeyboardWillHideNotification object:nil queue:mainQuene usingBlock:^(NSNotification *note) {

            

            [weakSelf.view removeGestureRecognizer:singleTapGR];

        }];

    }

    - (void)j_tapAnywhereToDismissKeyboard:(UIGestureRecognizer *)gestureRecognizer

    {

        [self.view endEditing:YES];

    }

    1、关闭所有actionSheet和alertView:


    - (void)closeModalView  {

           for(UIWindow* window in [UIApplication sharedApplication].Windows)    {

                for(UIView* view in window.subviews)        {          

                  [self dismissActionSheetAndAletrtViewInView:view];      

                }

          }

    }

    - (void)dismissActionSheetAndAletrtViewInView:(UIView*)view {

             if ([view isKindOfClass:[UIActionSheet class]])  {

                 UIActionSheet *actionView = (UIActionSheet *)view;

                 [actionView dismissWithClickedButtonIndex:actionView.cancelButtonIndex                      animated:NO];

          }

            else if ([view isKindOfClass:[UIAlertView class]]) {

                 UIAlertView *alertView = (UIAlertView *)view;

               [alertView dismissWithClickedButtonIndex:alertView.cancelButtonIndex                            animated:NO];

           }

           else  {

                for (UIView* subView in view.subviews) {

                    [self dismissActionSheetAndAletrtViewInView:subView];

                 }

            }

    }

    2、隐藏所有键盘:


    - (void)hideKeyBoard {

               for (UIWindow* window in [UIApplication sharedApplication].windows) {

                     for (UIView* view in window.subviews) {

                             [self dismissAllKeyBoardInView:view];

                    }

              }

    }

    -(BOOL) dismissAllKeyBoardInView:(UIView *)view {

                if([view isFirstResponder]) {

                      [view resignFirstResponder];

                      return YES;

                }

               for(UIView *subView in view.subviews) {

                    if([self dismissAllKeyBoardInView:subView]) {

                        return YES;

                 }

         }

         return NO;

    }

  • 相关阅读:
    [原创]ASP.NET MVC调用美图秀秀开放平台拼图实现
    使用Lucene检索文档中的关键字
    Unitils+hibernate+Spring+PostgreSql做dao层测试遇到的错误
    初探IronJS
    IntelliJ IDEA 12 创建Web项目 教程 超详细版
    百度面试题:求绝对值最小的数
    jquery+css实现简单的评分功能
    Knockot JS 数字输入插件
    Diagnostic Policy Service 服务处于起不来
    WCF学习笔记(一) 之 开门见山
  • 原文地址:https://www.cnblogs.com/yecong/p/6423263.html
Copyright © 2011-2022 走看看