forked from mirrors/linphone-iphone
17 lines
432 B
Objective-C
Executable file
17 lines
432 B
Objective-C
Executable file
//
|
|
// TPKeyboardAvoidingScrollView.h
|
|
//
|
|
// Created by Michael Tyson on 11/04/2011.
|
|
// Copyright 2011 A Tasty Pixel. All rights reserved.
|
|
//
|
|
|
|
@interface TPKeyboardAvoidingScrollView : UIScrollView {
|
|
UIEdgeInsets _priorInset;
|
|
BOOL _priorInsetSaved;
|
|
BOOL _keyboardVisible;
|
|
CGRect _keyboardRect;
|
|
CGSize _originalContentSize;
|
|
}
|
|
|
|
- (void)adjustOffsetToIdealIfNeeded;
|
|
@end
|