mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
14 lines
382 B
Objective-C
Executable file
14 lines
382 B
Objective-C
Executable file
//
|
|
// TPKeyboardAvoidingTableView.h
|
|
//
|
|
// Created by Michael Tyson on 30/09/2013.
|
|
// Copyright 2013 A Tasty Pixel. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UIScrollView+TPKeyboardAvoidingAdditions.h"
|
|
|
|
@interface TPKeyboardAvoidingTableView : UITableView <UITextFieldDelegate, UITextViewDelegate>
|
|
- (BOOL)focusNextTextField;
|
|
- (void)scrollToActiveTextField;
|
|
@end
|