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

//
// KeyboardService.h
// CHSlackTextViewController
//
// Created by Haeun Chung on 18/02/2019.
// Copyright © 2019 Slack Technologies, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KeyboardService : NSObject {
CGRect measureSize;
}
@property (nonatomic, assign) CGRect measureSize;
+ (id)shared;
- (CGFloat)keyboardHeight;
- (CGRect)keyboardSize;
@end
NS_ASSUME_NONNULL_END