JLChen
2021-08-02 38f4fb064df09f344fc3237409c76a9fba2a8a9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  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