• 判断 iPhone 虚拟键盘是否打开的代码 (转)


    判断 iPhone 虚拟键盘是否打开的代码

    http://blog.sina.com.cn/s/blog_70ba46340100oteq.html
     

     CocoaChina 会员“qqn_pipi”分享的判断 iPhone 虚拟键盘是否打开的代码,原理很简单:看当前的窗口是否存在一个 responder,从而判别 iPhone 的键盘是否打开了。

    BOOL TTIsKeyboardVisible() {
      // Operates on the assumption that the keyboard is visible if and only if there is a first
      // responder; i.e. a control responding to key events
      UIWindow* window = [UIApplication sharedApplication].keyWindow;
      return !![window findFirstResponder];
    }

     
  • 相关阅读:
    编译安装LEMP
    eAccelerator配置和使用指南
    /dev/null的用途
    分库分表
    JVM
    SOFA 数据透析
    HTTPS
    SOFA 通信
    分布式锁
    mysql 锁
  • 原文地址:https://www.cnblogs.com/zander/p/2679008.html
Copyright © 2020-2023  润新知