inputtoolbar icon indicating copy to clipboard operation
inputtoolbar copied to clipboard

Expandable text input toolbar for iOS applications

Results 12 inputtoolbar issues
Sort by recently updated
recently updated
newest added

Hi, when i click on the tool bar, keyboard is not appeared in iOS 11

1. Added becomeFirstResponder / resignFirstResponder methods 2. Fixed text field size for iPad 3. Some improvements

in order to puto to work the podspec.

Maximum line high error ??

calling the [self.inputToolbar.textView becomeFirstResponder]; is not showing the keyboad automatically when the view is appeared so i wrote the code in the place where the textview is allocated [internalTextView becomeFirstResponder];...

You mentioned about "This class is based on growingTextView" in UIExpandingTextView.m. But there is no license display. https://github.com/HansPinckaers/GrowingTextView/blob/master/LICENSE.txt I think this project should include the GrowingTextView license above. Thank you.

``` -(void)inputButtonPressed { if ([delegate respondsToSelector:@selector(inputButtonPressed:)]) { [delegate inputButtonPressed:self.textView.text]; } /* Remove the keyboard and clear the text */ [self.textView resignFirstResponder]; // should be optional [self.textView clearText]; // should be...