SlackTextViewController icon indicating copy to clipboard operation
SlackTextViewController copied to clipboard

⛔️**DEPRECATED** ⛔️ A drop-in UIViewController subclass with a growing text input view and other useful messaging features

Results 79 SlackTextViewController issues
Sort by recently updated
recently updated
newest added

In my project, I want to support to input attribute string. StatckOverFlow many answers says that we should change textview.text to attribute text manually.So, I changed them in textViewDidChange. But,...

- [x] I've read and understood the [Contributing guidelines](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CONTRIBUTING.md) and have done my best effort to follow them. - [x] I've read and agree to the [Code of Conduct](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CODE_OF_CONDUCT.md). -...

iOS 10

### Summary: SlackTextViewController is [**no longer using private APIs**](https://github.com/slackhq/SlackTextViewController/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+private+api+deprecation). We highly recommend updating your app to use [**version 1.9**](https://github.com/slackhq/SlackTextViewController/releases/tag/v1.9), to be in compliance with the [App Store Review Guidelines](https://developer.apple.com/app-store/review/guidelines/) and,...

important

self.textInputbar.maxCharCount = 256; - (BOOL)textView:(SLKTextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{ if (self.textInputbar.limitExceeded){ // Prevent crashing undo bug if(range.length + range.location > textView.text.length){ return NO; } NSUInteger newLength = [textView.text length] +...

I'm not sure what goes wrong... In a new test project, I subclass the SlackTextViewController with a customised table view cell, the controller's text input bar is flashing on scrolling....

When initiating with a table view style, if your table view uses an `estimatedRowHeight` instead of a fixed `rowHeight`, if you set the `textInputBar.textView.font` or if you change the `textColor`,...

bug

* [X] I’ve read and understood the [Contributing guidelines](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CONTRIBUTING.md) and have done my best effort to follow them. * [X] I’ve read and agree to the [Code of Conduct](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CODE_OF_CONDUCT.md). *...

In the swift example code simply adding `self.textView.typingSuggestionEnabled = false` in `configureViews()` hides the predictive text but as soon as you start typing the bar pops back into view. This...

- [x] I've read and understood the [Contributing guidelines](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CONTRIBUTING.md) and have done my best effort to follow them. - [x] I've read and agree to the [Code of Conduct](https://github.com/slackhq/SlackTextViewController/blob/master/.github/CODE_OF_CONDUCT.md). -...

Since this library consists, mainly, of custom UI elements, a great way to test it is by using _Snapshot Test Case_: it takes a configured `UIView` or `CALayer` and uses...

enhancement