• Swift3.0 键盘高度监听获取


    方法:通过通知监听键盘的动态

    1.键盘的动态有四种:

     public static let UIKeyboardWillShow: NSNotification.Name
    
        public static let UIKeyboardDidShow: NSNotification.Name
    
        public static let UIKeyboardWillHide: NSNotification.Name
    
        public static let UIKeyboardDidHide: NSNotification.Name

    2.下面监听下弹出之前,和回收之前的事件

    //键盘弹起
        @objc private func willShow(nottification:NSNotification){
            
            let info:NSDictionary = nottification.userInfo as NSDictionary!
    //        print(info)
           //通过输出看到下面的信息
        
             /*
    Optional([AnyHashable("UIKeyboardCenterBeginUserInfoKey"): NSPoint: {207, 849},
                
    AnyHashable("UIKeyboardIsLocalUserInfoKey"): 1,
               
    AnyHashable("UIKeyboardCenterEndUserInfoKey"): NSPoint: {207, 623},
                
    AnyHashable("UIKeyboardBoundsUserInfoKey"): NSRect: {{0, 0}, {414, 226}},
                
    AnyHashable("UIKeyboardFrameEndUserInfoKey"): NSRect: {{0, 510}, {414, 226}},
                         
    AnyHashable("UIKeyboardAnimationCurveUserInfoKey"): 7,
               
    AnyHashable("UIKeyboardFrameBeginUserInfoKey"): NSRect: {{0, 736}, {414, 226}},
                
    AnyHashable("UIKeyboardAnimationDurationUserInfoKey"): 0.25])
    */ //取出键盘的高度 let keyValue = info.object(forKey: "UIKeyboardFrameEndUserInfoKey") let keyRect = (keyValue as AnyObject).cgRectValue let height = keyRect?.size.height print(height!) } //键盘收起 @objc private func willHide(nottification:NSNotification){ }
  • 相关阅读:
    ASP.NET页面生命周期总结(完结篇)
    ASP.NET页面生命周期总结(2)
    ASP.NET页面生命周期总结(1)
    springboot-简介
    python-day2
    python-day1
    jsoup解析页面
    httpclient模拟浏览器
    httpclient
    变量名和函数名重复的话
  • 原文地址:https://www.cnblogs.com/xingsmile/p/6283052.html
Copyright © 2020-2023  润新知