zoukankan      html  css  js  c++  java
  • 用通知监听键盘的出现与消失,与获取键盘高度

      // let keyBoardView = UIView()

     //****************

    //      let center = NotificationCenter.default

    //      center.addObserver(self, selector: #selector(willShow(notic:)), name: NSNotification.Name.UIKeyboardWillShow, object: nibName)

    //      center.addObserver(self, selector: #selector(willHide(notice:)), name: NSNotification.Name.UIKeyboardWillHide, object: nibName)

    //      center.addObserver(gardenInfoExpandView(), selector: #selector(gardenInfoExpandView.clickRightBtn), name: NSNotification.Name.UIKeyboardWillHide, object: nibName)

    //*******

    //   func willShow(notic: NSNotification){

    //      if let ty = (notic.userInfo?[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue.height,

    //         let animDur = notic.userInfo?[UIKeyboardAnimationDurationUserInfoKey] as? Double {

    //         UIView.animate(withDuration: animDur, animations: { () -> Void in

    //         self.keyBoardView.frame = CGRectMake(0, screenHeight() - 30 - ty, screenWidth(), 30)

    //         self.keyBoardView.backgroundColor = UIColor(hex: "dededc")

    //         

    //         self.btn.frame = CGRectMake(screenWidth() - 90, screenHeight() - 30 - ty, 90, 30)

    //         self.btn.setTitle("完成", for: .normal)

    //         self.view.addSubview(self.keyBoardView)

    //         self.view.addSubview(self.btn)

    //         self.btn.addTarget(self, action: #selector(self.willHide), for: .touchUpInside)

    //         })

    //      }

    //   }

    //   func willHide(notice:NSNotification){

    //      dismissKeyboard()

    //      keyBoardView.removeFromSuperview()

    //      btn.removeFromSuperview()

    //   }

  • 相关阅读:
    [hdu4631 Sad Love Story]最近点对,枚举
    [hdu4629 Burning]三角形面积并,扫描线
    [hdu4628 Pieces]二进制子状态,DP
    [hdu4627 The Unsolvable Problem]数论
    [hdu4622 Reincarnation]后缀数组
    [hdu5379 Mahjong tree]dfs计数
    [hdu5375 Gray code]DP
    决策树
    算法题解之位运算
    算法题解之滑动窗口
  • 原文地址:https://www.cnblogs.com/linximu/p/6077364.html
Copyright © 2011-2022 走看看