You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
465 B

5 years ago
  1. //
  2. // KeyboardService.h
  3. // CHSlackTextViewController
  4. //
  5. // Created by Haeun Chung on 18/02/2019.
  6. // Copyright © 2019 Slack Technologies, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KeyboardService : NSObject {
  12. CGRect measureSize;
  13. }
  14. @property (nonatomic, assign) CGRect measureSize;
  15. + (id)shared;
  16. - (CGFloat)keyboardHeight;
  17. - (CGRect)keyboardSize;
  18. @end
  19. NS_ASSUME_NONNULL_END