GrowingTextView icon indicating copy to clipboard operation
GrowingTextView copied to clipboard

[UNMAINTAINED] An UITextView which grows/shrinks with the text and starts scrolling when the content reaches a certain number of lines. Similar to the one Apple uses in the SMS-app. See blog-post for...

Results 71 GrowingTextView issues
Sort by recently updated
recently updated
newest added

Does HPGrowingTextView support auto layout? Like this lib: http://corecocoa.wordpress.com/2013/11/09/auto-growing-uitextview-using-auto-layout/

HPTextViewInternal need override setPlaceholder, and call [self setNeedsDisplay] in it.

When using a standard UITextView it is possible to override the built-in copy/paste functions with your own functionality. This is useful for more advanced copy/paste scenarios (we have the need...

The GrowingTextView I want to use will be fixed to the top of the screen. ...so is there a way to grow the text downwards as they type?

![screen shot 2013-11-18 at 15 19 19](https://f.cloud.github.com/assets/1762910/1562901/0fe9daca-5054-11e3-95d0-66a2da7a0104.png) I was checking and in SO i found this: http://stackoverflow.com/questions/19948394/textviewdidchange-crashes-in-ios-7 Not sure if the problem is the same. I get it when i...

when paste 1000 words to growingTextview(set maxlines 5), the words not appeared. Just shown a blank background.but, when you delete a character, It was appeared. :(

This line should only fire if an attributedText is really set: if(internalTextView.attributedText && internalTextView.attributedText.length > 0){ Instead it is also true if some text is through the "text"-property, because as...

If you use something like ``` -(void)growingTextViewDidBeginEditing:(HPGrowingTextView *)growingTextView { growingTextView.placeholder = nil; } ``` On your controller, it wont work (Maybe just in iOS 7) if placeholder has been set...

The alignment of the placeholder text and the input caret are not the same. They are off by like 10 pixels

As the variable name `fudgeFactor` implies, you've worked these values out yourself and used them to reduce the overall text bounding rect within the text view's frame. These values can...