Skip to content

Instantly share code, notes, and snippets.

@fobos000
fobos000 / KeyboardHelper.h
Last active February 18, 2016 09:31
iOS helper class for discovering current keyboard frame
#import <Foundation/Foundation.h>
@interface KeyboardHelper : NSObject
@property (nonatomic, readonly) CGRect keyboardBounds;
+ (KeyboardHelper *)instance;
@end