mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
15 lines
411 B
Objective-C
Executable file
15 lines
411 B
Objective-C
Executable file
//
|
|
// TPKeyboardAvoidingScrollView.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 TPKeyboardAvoidingScrollView : UIScrollView <UITextFieldDelegate, UITextViewDelegate>
|
|
- (void)contentSizeToFit;
|
|
- (BOOL)focusNextTextField;
|
|
- (void)scrollToActiveTextField;
|
|
@end
|