mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
16 lines
387 B
Objective-C
Executable file
16 lines
387 B
Objective-C
Executable file
//
|
|
// TPKeyboardAvoidingTableView.h
|
|
//
|
|
// Created by Michael Tyson on 11/04/2011.
|
|
// Copyright 2011 A Tasty Pixel. All rights reserved.
|
|
//
|
|
|
|
@interface TPKeyboardAvoidingTableView : UITableView {
|
|
UIEdgeInsets _priorInset;
|
|
BOOL _priorInsetSaved;
|
|
BOOL _keyboardVisible;
|
|
CGRect _keyboardRect;
|
|
}
|
|
|
|
- (void)adjustOffsetToIdealIfNeeded;
|
|
@end
|