NIMKitKeyboard.h 384 B

12345678910111213141516171819202122
  1. //
  2. // NIMKitKeyboard.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2017/11/3.
  6. // Copyright © 2017年 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NIMKitKeyboardInfo : NSObject
  10. //是否可见
  11. @property (nonatomic,assign,readonly) CGFloat isVisiable;
  12. //键盘高度
  13. @property (nonatomic,assign,readonly) CGFloat keyboardHeight;
  14. + (instancetype)instance;
  15. @end