CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2015 |
Maintained by Josip Bernat.
UITableView subclass which handles input text view. Suitable plugin for chat applications. It uses PHFComposeBarView as input view, great and easy to customize resizable text view.
platform :ios, '8.0'
pod 'JBInputTableView'
You can use it from Storyboards, XIBs or directly from code. Change your UITableView to JBInputTableView and make it firstResponder in viewDidLoad.
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"CellIdentifier"];
self.tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;
[self.tableView becomeFirstResponder];
}