UIViewController+LZBKeyBoardObserver.h 728 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // UIViewController+LZBKeyBoardObserver.h
  3. // LZBKeyBoardView
  4. //
  5. // demo地址:https://github.com/lzbgithubcode/LZBKeyBoardView.git
  6. // Created by zibin on 16/11/30.
  7. // Copyright © 2016年 apple. All rights reserved.
  8. //
  9. #pragma mark - 登录页面自动使用键盘高度
  10. #import <UIKit/UIKit.h>
  11. //设置键盘和第一响应者的间距
  12. #define lzb_settingKeyBoard_DefaultMargin 10
  13. @interface UIViewController (LZBKeyBoardObserver)
  14. /**
  15. 增加点击任意地方消除键盘
  16. */
  17. - (void)lzb_addKeyBoardTapAnyAutoDismissKeyBoard;
  18. /**
  19. 增加键盘监听观察者
  20. */
  21. - (void)lzb_addKeyBoardObserverAutoAdjustHeight;
  22. /**
  23. 移除键盘监听观察者,必须实现
  24. */
  25. - (void)lzb_removeKeyBoardObserver;
  26. @end