CSGrowingTextView 1.0.5

CSGrowingTextView 1.0.5

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jun 2015

Maintained by Josip Bernat.



  • By
  • Clover Developers and Josip Bernat

CSGrowingTextView is a iOS text view that sizes while user types using keyboard.

Usage

You can use it both by code or by Interface Builder, with or without autolayout. Use growDirection to manipulate on what side should CSGrowingTextView grow and growAnimationDuration, growAnimationOptions properties to adjust grow animation.
In case you want your own growing animation implement CSGrowingTextViewDelegate growingTextView:willChangeHeight method and commit animation as following:

// This example uses autolayout
- (void)growingTextView:(CSGrowingTextView *)growingTextView willChangeHeight:(CGFloat)height {

    __weak id this = self;
    [UIView animateWithDuration:0.25
                          delay:0.0
                        options:UIViewAnimationOptionCurveEaseInOut
                     animations:^{

                         __strong CSKeyboardViewController *strongThis = this;

                         strongThis.growingTextViewHeightConstraint.constant = height;
                         [strongThis.growingTextView setNeedsUpdateConstraints];
                         [strongThis.growingTextView.superview layoutIfNeeded];
                     } completion:nil];
}

Podfile

platform :ios, '6.0'
pod 'CSGrowingTextView', '~> 1.0'