linphone-ios/Classes/Utils/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h
2016-01-06 12:19:07 +01:00

22 lines
861 B
Objective-C
Executable file

//
// UIScrollView+TPKeyboardAvoidingAdditions.h
// TPKeyboardAvoidingSample
//
// Created by Michael Tyson on 30/09/2013.
// Copyright 2013 A Tasty Pixel. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface UIScrollView (TPKeyboardAvoidingAdditions)
- (BOOL)TPKeyboardAvoiding_focusNextTextField;
- (void)TPKeyboardAvoiding_scrollToActiveTextField;
- (void)TPKeyboardAvoiding_keyboardWillShow:(NSNotification *)notification;
- (void)TPKeyboardAvoiding_keyboardWillHide:(NSNotification *)notification;
- (void)TPKeyboardAvoiding_updateContentInset;
- (void)TPKeyboardAvoiding_updateFromContentSizeChange;
- (void)TPKeyboardAvoiding_assignTextDelegateForViewsBeneathView:(UIView *)view;
- (UIView *)TPKeyboardAvoiding_findFirstResponderBeneathView:(UIView *)view;
- (CGSize)TPKeyboardAvoiding_calculatedContentSizeFromSubviewFrames;
@end