加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

swift2.0 动态获取键盘高度 Get KeyboardHeight

发布时间:2020-12-14 01:45:48 所属栏目:百科 来源:网络整理
导读:列表内容 监听键盘起落 下面是可以监听到得四种状态 UIKeyboardWillShowNotification: String UIKeyboardDidShowNotification: String UIKeyboardWillHideNotification: String UIKeyboardDidHideNotification: String NSNotificationCenter .defaultCenter
  1. 列表内容

监听键盘起落 下面是可以监听到得四种状态

UIKeyboardWillShowNotification: String
UIKeyboardDidShowNotification: String
UIKeyboardWillHideNotification: String
UIKeyboardDidHideNotification: String

NSNotificationCenter.defaultCenter().addObserver(self,selector: "keyboardWillAppear:",name: UIKeyboardWillShowNotification,object: nil)

NSNotificationCenter.defaultCenter().addObserver(self,selector: "keyboardWillDisappear:",name:UIKeyboardWillHideNotification,object: nil)
func keyboardWillAppear(notification: NSNotification) {

        // 获取键盘信息
        let keyboardinfo = notification.userInfo![UIKeyboardFrameBeginUserInfoKey]

        let keyboardheight:CGFloat = (keyboardinfo?.CGRectValue.size.height)!

        print("键盘弹起")

        print(keyboardheight)

    }

    func keyboardWillDisappear(notification:NSNotification){

        print("键盘落下")
    }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读