Skip to content

A simple view which allows for an iOS Messages style keyboard input view and panning behavior.

License

Notifications You must be signed in to change notification settings

carabina/BABFrameObservingInputAccessoryView

 
 

Repository files navigation

BABFrameObservingInputAccessoryView

A simple view which allows for an iOS Messages style keyboard input view and panning behavior.

Sample Project

Supports iOS 7.0+

  • Free of method swizzling
  • No associated objects or other runtime hacks
  • Works easily with or without Auto Layout
  • Tested on iOS 7, iOS 8, iPhone & iPad

This is a UIView subclass which allows for observing the frame of a UITextView or UITextField's inputAcessoryView. This allows your to keep the text field above the keyboard as it moves. Also this allows for interactive keyboard dismissal using UIScrollView's keyboardDismissMode property.

Sample Code & Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Here is a sample viewDidLoad implementation.

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;
        
    BABFrameObservingInputAccessoryView *inputView = [[BABFrameObservingInputAccessoryView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44)];
    inputView.userInteractionEnabled = NO;
    
    self.textField.inputAccessoryView = inputView;
    
    __weak typeof(self)weakSelf = self;
    
    inputView.inputAcessoryViewFrameChangedBlock = ^(CGRect frame){
        
        CGFloat value = CGRectGetHeight(weakSelf.view.frame) - CGRectGetMinY(weakSelf.textField.inputAccessoryView.superview.frame) - CGRectGetHeight(weakSelf.textField.inputAccessoryView.frame);
        
        weakSelf.toolbarContainerVerticalSpacingConstraint.constant = MAX(0, value);
        
        [weakSelf.view layoutIfNeeded];

    };
}

Requirements

  • Requires iOS 7.0+

Installation

BABFrameObservingInputAccessoryView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "BABFrameObservingInputAccessoryView"

Author

Bryn Bodayle, bryn.bodayle@gmail.com

License

BABFrameObservingInputAccessoryView is available under the MIT license. See the LICENSE file for more info.

About

A simple view which allows for an iOS Messages style keyboard input view and panning behavior.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 37.2%
  • Shell 33.9%
  • Ruby 24.1%
  • C 4.8%